/* Contact Page Styles */

/* Contact Form Container */
.content-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(17, 38, 146, 0.08);
}

/* Form Labels */
.content-form .form-label {
    font-weight: 600;
    color: #0d2b3e;
    margin-bottom: 8px;
}

.content-form .form-label i {
    color: #0d6efd;
}

/* Form Controls */
.content-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.content-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.content-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.content-form .btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    color: #fff;
    padding: 14px;
    font-weight: 700;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.content-form .btn:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

/* Alert Styles */
.contact-alert {
    border-radius: 12px;
    margin-bottom: 20px;
}

/* reCAPTCHA Scale */
.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
}

