body.login-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at 15% 15%, rgba(214, 172, 77, 0.25), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(20, 82, 60, 0.18), transparent 32%),
        linear-gradient(160deg, #f8f6ee 0%, #edf2ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 14px;
}

.login-shell {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(214, 172, 77, 0.3);
    box-shadow: 0 24px 50px rgba(15, 61, 46, 0.2);
    background: #fff;
}

.login-hero {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        linear-gradient(165deg, #114332 0%, #0f3328 100%);
    color: #f8f5ea;
    padding: 40px 36px;
    position: relative;
}

.login-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(30deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%);
    background-size: 54px 54px;
    pointer-events: none;
}

.login-hero-inner {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 18px rgba(214, 172, 77, 0.35));
}

.hero-title {
    margin: 0;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
}

.hero-subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #f2deaf;
    font-weight: 600;
    line-height: 1.5;
}

.hero-subtitle span {
    display: block;
    white-space: nowrap;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(214, 172, 77, 0.55);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fdeac0;
    background: rgba(214, 172, 77, 0.15);
}

.login-card {
    padding: 34px 32px;
    background: #ffffff;
}

.login-card h2 {
    margin: 2px 0 8px;
    color: #173f30;
    font-size: 1.35rem;
}

.login-card p {
    color: #6b7280;
    margin: 0 0 20px;
}

.login-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.login-label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 700;
}

.login-input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #d7e2d6;
    background: #fbfdfb;
    padding: 12px 13px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.login-input:focus {
    outline: none;
    border-color: #1d6c4f;
    box-shadow: 0 0 0 0.2rem rgba(20, 82, 60, 0.12);
    background: #fff;
}

.login-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #1d6c4f, #0f3d2e);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(15, 61, 46, 0.18);
}

.login-footnote {
    margin-top: 18px;
    color: #6b7280;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 920px) {
    .login-shell {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .login-hero {
        padding: 28px 24px;
    }

    .hero-logo {
        width: 84px;
        height: 84px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 1.6rem;
    }
}
