/* =============================================================
   login.css — iColor Omnichannel
   Style khusus halaman login.html.
   Impor SETELAH shared.css.
   ============================================================= */

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eae6df;
}

.login-box {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.login-box h2 {
    color: var(--text-primary);
    margin-bottom: 6px;
}

.login-box .login-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}