*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #1a2332 0%, #2c3e50 60%, #1a2332 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Card ───────────────────────────────────────────────────────────────────── */
.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    padding: 40px 36px 36px;
    width: 100%;
    max-width: 380px;
    margin: 16px;
}

/* ── Branding ───────────────────────────────────────────────────────────────── */
.login-logo {
    text-align: center;
    margin-bottom: 20px;
}
.login-logo img {
    height: 52px;
    width: auto;
}
.login-heading {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    margin-bottom: 24px;
}

/* ── Status messages ────────────────────────────────────────────────────────── */
.login-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88em;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.4;
}
.login-msg--success { background: #d4edda; color: #155724; }
.login-msg--error   { background: #f8d7da; color: #721c24; }
.login-msg--info    { background: #d1ecf1; color: #0c5460; }

/* ── Form ───────────────────────────────────────────────────────────────────── */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cdd5df;
    border-radius: 8px;
    font-size: 1em;
    color: #1a2332;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.login-input:focus {
    border-color: #1a2332;
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.12);
}
.login-input::placeholder {
    color: #9aa5b1;
}
.login-btn {
    width: 100%;
    padding: 12px;
    background: #1a2332;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.15s;
}
.login-btn:hover {
    background: #2c3e50;
}
.login-btn:active {
    background: #111820;
}
