/* Estilos para mensajes del formulario de contacto */
.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.1);
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para el botón deshabilitado */
.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}