/* BACKGROUND PATTERN */
.page-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.page-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(27, 45, 115, 0.02) 40px, rgba(27, 45, 115, 0.02) 41px);
    pointer-events: none;
}

.page-wrap::after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 164, 78, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* LOGIN CARD */
.login-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.login-header {
    text-align: center;
    margin-bottom: 36px
}

.login-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
    opacity: .85
}

.login-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 10px
}

.login-title em {
    color: var(--gold);
    font-style: italic
}

.login-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6
}

/* Gold rule */
.gold-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
    opacity: .5
}

/* CARD */
.login-card {
    background: var(--navy);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(27, 45, 115, 0.2);
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 20px;
    outline: none;
    transition: border-color .2s, background .2s;
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25)
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.remember-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.remember-wrap input {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    cursor: pointer
}

.remember-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer
}

.forgot-link {
    font-size: 13px;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
    opacity: .8
}

.forgot-link:hover {
    opacity: 1
}

.btn-login {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 2px;
    padding: 16px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 20px;
}

.btn-login:hover {
    background: var(--gold-light)
}

.card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.not-member {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.not-member a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
    opacity: .8;
}

.not-member a:hover {
    opacity: 1
}

/* FOOTER NOTE */
.login-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.login-footer a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600
}

.login-footer a:hover {
    color: var(--gold)
}

/* FOOTER */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.5)
}
