/**
 * Contact Form Styles
 */

/* Notification Styles */
.contact-form-notification {
    margin-bottom: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.notification-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form-notification p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* reCAPTCHA Container */
#recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    margin: 10px 0;
}

/* Form Button Loading State */
.premium-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.premium-submit-btn span {
    display: inline-block;
}
