/* Pantallas de acceso / recuperación de contraseña */
.he-auth-page.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px 12px;
    background-color: #1e3a5f;
    overflow: hidden;
}

.he-auth-page.login-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url('../img/login-bg-personal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    transform: scale(1.06);
}

.he-auth-page.login-page::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, rgba(30, 58, 95, 0.72) 0%, rgba(60, 141, 188, 0.62) 55%, rgba(93, 173, 226, 0.55) 100%);
}

.he-auth-box.login-box {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    float: none;
    width: 360px;
    max-width: 100%;
}

.he-auth-card.login-box-body {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(20, 40, 70, 0.35);
    padding: 28px 26px 24px;
    background: #fff;
}

.he-auth-card .he-auth-system-name {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e3a5f;
    text-align: center;
}

.he-auth-card .login-box-msg,
.he-auth-card .he-auth-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.he-auth-card .he-auth-subtitle.login-box-msg {
    margin: 0 0 20px;
    font-size: 13px;
    font-weight: 400;
    color: #777;
    line-height: 1.4;
}

.he-auth-card .he-auth-help {
    margin: 0 0 18px;
    font-size: 13px;
    color: #777;
    line-height: 1.45;
}

.he-auth-card .form-control {
    height: 40px;
    border-radius: 3px;
}

.he-auth-card .btn-primary {
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 3px;
}

.he-auth-card .he-auth-links {
    margin-top: 16px;
    margin-bottom: 0;
    text-align: center;
}

.he-auth-card .he-auth-links a {
    color: #3c8dbc;
}

.he-auth-footer {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.he-auth-footer small {
    font-size: 12px;
}

@media (max-width: 480px) {
    .he-auth-box.login-box {
        width: 100%;
    }

    .he-auth-card.login-box-body {
        padding: 22px 18px;
    }
}
