
/* --- Mensaje de error de credenciales --- */
.login-error-msg {
    color: #dc3545;
    padding: 4px 0;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
    transition: opacity 0.4s ease;
}

/* --- Mensaje de lockout inline (solo texto rojo, estático) --- */
.lockout-inline {
    color: #dc3545;
    padding: 4px 0;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
}

.lockout-countdown {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

/* --- Inputs deshabilitados durante lockout --- */
.input-locked {
    opacity: 0.5 !important;
    pointer-events: none !important;
    background-color: #f0f0f0 !important;
    cursor: not-allowed !important;
}

/* --- Botón deshabilitado durante lockout --- */
.btn-locked {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
}

.mensajes .alerta.error,
.mensajes .alerta.danger {
    color: #dc3545;
    padding: 4px 0;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
    transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
    .lockout-inline {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .lockout-countdown {
        font-size: 14px;
    }
}