/* reCAPTCHA Styling - Invisible reCAPTCHA */
.g-recaptcha {
    display: none; /* Hide the widget since we're using invisible reCAPTCHA */
}

/* Button loading state */
.secondary-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Error message styling */
.alert {
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Fix for potential conflicts with browser extensions */
.g-recaptcha * {
    box-sizing: content-box;
}

/* Ensure form elements don't interfere with reCAPTCHA */
.contactForm .form-group {
    position: relative;
}

/* Prevent any overlay issues */
.contactForm {
    position: relative;
    z-index: 1;
}
