/* ============================================================
   login.css — Estilos exclusivos de la pantalla de login
   ============================================================ */

.login-body {
    background: linear-gradient(135deg, #1e2a3a 0%, #2c70b8 60%, #4A90D9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.25);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}
.login-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 12px;
}
.login-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #1e2a3a;
    margin-bottom: 4px;
}
.login-subtitulo {
    font-size: 13px;
    color: #888;
}

.login-form .form-group {
    margin-bottom: 18px;
}
.login-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
}
.login-form label i {
    color: #4A90D9;
    width: 14px;
}
.login-form .form-control {
    height: 42px;
    font-size: 14px;
}
.login-form .btn-primary {
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 6px;
    border-radius: 8px;
    background: #4A90D9;
    border: none;
    transition: background 0.2s, transform 0.1s;
}
.login-form .btn-primary:hover {
    background: #2c70b8;
    transform: none;
    box-shadow: 0 4px 14px rgba(74,144,217,0.4);
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: #aaa;
}
