.container {
    margin-top: 20px;
}

/* Mensaje de éxito/error más visible y destacado */
.alert-success {
    font-size: 16px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-danger {
    font-size: 16px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Formulario deshabilitado con overlay visual */
form:has(input:disabled) {
    opacity: 0.85;
}

/* Logo con animación suave */
.logoLogin {
    animation: fadeIn 0.5s ease-in;
    text-align: center;
    margin-bottom: 20px;
}

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

/* Contenedor de botones lado a lado */
.btn-group-passwd {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.btn-group-passwd .btn {
    flex: 1;
    max-width: 200px;
}

/* Card con mejor estilo */
.card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.card-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Input deshabilitado con estilo visual claro */
input:disabled {
    background-color: #f5f5f5 !important;
    cursor: not-allowed;
    border-color: #ddd;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Logo: limitar ancho máximo */
.logoLogin img {
    max-width: 300px;
    height: auto;
}

/* Alerta centrada con margen superior */
.alert-msg-center {
    margin-top: 20px;
    text-align: center;
}