/* Pantalla de login — independiente del layout principal */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    padding: 20px;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
    animation: fadeInUp .3s ease-out;
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.login-card__logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-card__logo-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
}

.login-card__brand {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.login-card__subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 0;
}

.login-card h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #0f172a;
}

.login-card .subtitle {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 24px;
}

.login-card .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

.login-card__footer {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: #94a3b8;
}
