/* ===== LOGIN ===== */
.login-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 44px 40px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 6px 32px rgba(47, 142, 205, 0.13);
}
.login-box img.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 180px;
}
.login-box h2 {
    text-align: center;
    font-size: 1rem;
    color: #2F8ECD;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.campo {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.campo label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #11385A;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.campo input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #c8d6e5;
    border-radius: 8px;
    font-size: 0.97rem;
    color: #333;
    background: #f7fafd;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.campo input:focus {
    border-color: #2F8ECD;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(47, 142, 205, 0.12);
}
.btn-ingresar {
    width: 100%;
    padding: 13px;
    background: #2F8ECD;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.1s;
}
.btn-ingresar:hover { background: #11385A; }
.btn-ingresar:active { transform: scale(0.98); }
.error-msg {
    background: #fdecea;
    color: #c0392b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    margin-bottom: 18px;
    text-align: center;
    border: 1px solid #f5c6cb;
}
.divider {
    border: none;
    border-top: 1px solid #e5edf5;
    margin: 24px 0 20px;
}
.pie {
    text-align: center;
    font-size: 0.78rem;
    color: #aab8c5;
    margin-top: 20px;
}