/* ============================================================
   GRAVITY FORMS STYLER - FRONTEND STYLES
   ============================================================ */

/* Basic styles */
.gform_wrapper .gfield_label {
    font-weight: 600;
}

.gform_wrapper .ginput_container {
    margin-bottom: 5px;
}

/* Validation */
.gform_wrapper .validation_error {
    color: #e74c3c;
    padding: 12px 15px;
    background: #fde8e8;
    border-radius: 4px;
    margin: 10px 0;
}

.gform_wrapper .validation_message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

/* Required field */
.gform_wrapper .gfield_required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .gform_wrapper .gform_footer {
        text-align: center;
    }
    
    .gform_wrapper .gform_button,
    .gform_wrapper input[type="submit"] {
        width: 100%;
    }
}