/* Contact Form Message Styles */
.form-message {
    padding: 12px 16px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form loading state */
form input[type="submit"]:disabled,
form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

