/* ==========================================
   LOGIN PAGE
========================================== */

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 145px);
    width: 100%;
    padding: 32px 0;
}

.login-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    padding: 35px;
    background:
        linear-gradient(
            150deg,
            #202020,
            #151515
        );
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.login-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            var(--gold-light),
            var(--gold),
            transparent
        );
    content: "";
}

.login-accent-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    background: #111111;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.055);
}

.login-card h1 {
    margin: 0;
    color: var(--gold);
    text-align: center;
}

.login-subtitle,
.login-card > p {
    margin: 9px 0 0;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.login-form {
    margin-top: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.login-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: #111111;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 16px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.login-form input:hover {
    border-color: #65582f;
}

.login-form input:focus {
    background: #141414;
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.13);
}

.login-form button {
    width: 100%;
    min-height: 46px;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.login-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.12);
}

@media (max-width: 600px) {
    .login-page {
        min-height: calc(100vh - 110px);
        padding: 20px 0;
    }

    .login-card {
        max-width: 100%;
        padding: 30px 24px;
    }
}
