﻿/* Estilos para mensajes de validación */
.error-message {
    display: block;
    color: #d9534f;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.input-error {
    border-color: #d9534f !important;
    background-color: #fff5f5;
}

    .input-error:focus {
        border-color: #d9534f !important;
        box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
    }
