.form-response {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.form-response.loading {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* Animación para mostrar/ocultar la respuesta */
.form-response.show {
    opacity: 1;
    transform: translateY(0);
}

.form-response.hide {
    opacity: 0;
    transform: translateY(-10px);
}