/* --- LOGIN TEAL CLÍNICO --- */
body.login-page {
    background: #eceff1; /* Gris azulado muy claro */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.login-box {
    margin: 0;
    width: 400px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #cfd8dc;
}

.login-logo {
    /* Fondo Teal sólido */
    background-color: #009688; 
    margin-bottom: 0;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #00796b;
}

.login-logo a {
    color: #fff !important;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-logo .icon-medical {
    font-size: 42px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    display: block;
}

.login-box-body {
    padding: 40px;
    color: #546e7a;
}

.login-box-msg {
    color: #455a64;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* Inputs */
.form-control {
    background-color: #f9f9f9;
    border: 1px solid #cfd8dc;
    border-radius: 4px !important;
    height: 46px;
    padding-left: 45px; 
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control:focus {
    background-color: #fff;
    border-color: #009688; /* Borde Teal al enfocar */
    box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
}

.form-control-feedback {
    color: #90a4ae;
    left: 0;
    line-height: 46px;
    width: 45px;
    height: 46px;
    text-align: center;
}

.has-feedback .form-control {
    padding-right: 15px;
}

/* Botón Ingresar */
.btn-primary {
    background-color: #009688; /* Teal */
    border-color: #00796b;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    height: 46px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #00796b !important;
    border-color: #004d40 !important;
    transform: translateY(-1px);
}