/* Form message styles */
.form-message {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* reCAPTCHA container */
.g-recaptcha-container {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

/* Form field focus styles */
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Submit button disabled state */
.contact-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}