.contact-form-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: #5f6368;
    margin-bottom: 25px;
    font-size: 1.05rem;
    margin-top: 16px;
}

#contactForm {
    padding-top: 0;
}

#contactForm .form-label {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 16px;
}

#contactForm .form-control,
#contactForm .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: #4b24ee;
    box-shadow: 0 0 0 0.25rem rgba(75, 36, 238, 0.25);
}

#contactForm textarea.form-control {
    min-height: 120px;
}

#contactForm .btn-primary {
    border: none;
    font-weight: 500;
    padding: 16px;
    border-radius: 5px;
    background: #4b24ee;
    min-width: 120px;
    line-height: 16px;
}

#contactForm .alert {
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
}

#contactForm .is-invalid {
    border-color: #dc3545;
}

#contactForm .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0;
    font-size: 12px;
    color: #dc3545;
}

/* reCAPTCHA v3 is invisible, no need for styling */

/* Spinner for loading state */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.form-check-label {
    font-size: 16px;
    color: #333 !important;
}

.form-check-label a {
    font-size: 16px;
    color: #333;
    border-bottom: 1px dotted #333;
}