﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --gold: #c4a05a;
    --gold2: #e0c07a;
    --bg: #0b0806;
    --cream: #f2e8d8
}

body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'DM Sans',sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

a {
    text-decoration: none;
    color: inherit
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(11,8,6,.95);
    border-bottom: 1px solid rgba(196,160,90,.1);
}

.nav-brand {
    font-family: 'Cinzel',serif;
    font-size: .9rem;
    color: var(--gold);
    letter-spacing: .14em
}

.nav-back {
    font-size: .55rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(196,160,90,.6);
    padding: 7px 16px;
    border: 1px solid rgba(196,160,90,.2);
    transition: all .3s
}

    .nav-back:hover {
        color: var(--gold);
        border-color: rgba(196,160,90,.45)
    }

/* PAGE */
.page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(155deg,#0c0804 0%,#18120a 55%,#0c0804 100%)
}

/* LOGIN CARD */
.login-card {
    width: 100%;
    max-width: 480px
}

.lc-eyebrow {
    font-size: .54rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(196,160,90,.55);
    margin-bottom: 14px
}

.lc-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(2rem,5vw,2.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 6px
}

    .lc-title em {
        color: var(--gold);
        font-style: italic
    }

.gold-bar {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg,var(--gold),transparent);
    margin: 20px 0
}

.lc-sub {
    font-family: 'Cormorant Garamond',serif;
    font-size: .95rem;
    color: rgba(242,232,216,.42);
    font-style: italic;
    margin-bottom: 36px;
    line-height: 1.7
}

/* FORM */
.lc-box {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(196,160,90,.14);
    padding: 36px
}

.field-label {
    font-size: .52rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(196,160,90,.5);
    display: block;
    margin-bottom: 10px
}

.field-input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(196,160,90,.2);
    padding: 14px 18px;
    color: var(--cream);
    font-family: 'DM Sans',sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .3s,background .3s;
    letter-spacing: .03em;
}

    .field-input::placeholder {
        color: rgba(242,232,216,.2)
    }

    .field-input:focus {
        border-color: rgba(196,160,90,.5);
        background: rgba(255,255,255,.06)
    }

.field-hint {
    font-size: .6rem;
    color: rgba(242,232,216,.28);
    margin-top: 8px;
    letter-spacing: .04em;
    line-height: 1.6
}

/* ERROR */
.lc-error {
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(220,80,60,.07);
    border: 1px solid rgba(220,80,60,.28);
    color: rgba(230,110,90,.9);
    font-size: .72rem;
    letter-spacing: .04em;
    line-height: 1.6;
}

/* BUTTON */
.lc-btn {
    width: 100%;
    margin-top: 24px;
    padding: 15px;
    background: linear-gradient(135deg,#c4a05a,#a8864a);
    border: none;
    color: #0b0806;
    font-family: 'DM Sans',sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

    .lc-btn:hover {
        background: linear-gradient(135deg,#d4b06a,#b8965a);
        transform: translateY(-1px)
    }

/* DIVIDER */
.lc-divider {
    text-align: center;
    margin: 20px 0;
    font-size: .56rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(242,232,216,.2)
}

.lc-track-link {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(196,160,90,.15);
    color: rgba(196,160,90,.6);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: all .3s;
}

    .lc-track-link:hover {
        border-color: rgba(196,160,90,.35);
        color: var(--gold);
        background: rgba(196,160,90,.05)
    }

/* WHAT YOU GET */
.lc-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.lc-feat {
    padding: 14px 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(196,160,90,.08);
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.lc-feat-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px
}

.lc-feat-text {
    font-size: .68rem;
    color: rgba(242,232,216,.45);
    line-height: 1.6
}

    .lc-feat-text strong {
        display: block;
        color: rgba(242,232,216,.7);
        font-weight: 400;
        margin-bottom: 2px;
        font-size: .7rem
    }

@@media(max-width:520px) {
    nav {
        padding: 0 20px
    }

    .lc-box {
        padding: 24px 20px
    }

    .lc-features {
        grid-template-columns: 1fr
    }
}


