/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(27,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(28,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(34,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-main'
(74,28): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(84,23): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(88,17): run-time error CSS1039: Token not allowed after unary operator: '-logo-green'
(93,21): run-time error CSS1039: Token not allowed after unary operator: '-logo-green-light'
(97,25): run-time error CSS1039: Token not allowed after unary operator: '-logo-orange-light'
(114,17): run-time error CSS1039: Token not allowed after unary operator: '-logo-orange'
(118,23): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(122,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(128,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(141,30): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(144,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(147,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(152,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(153,26): run-time error CSS1039: Token not allowed after unary operator: '-bg-card'
(167,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(175,26): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(186,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(198,30): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(200,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(202,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(212,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(225,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(243,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(249,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(254,17): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(260,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(268,22): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(270,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(282,26): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(297,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(301,21): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(306,25): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(314,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(319,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
 */
:root {
    --bg-main: #EAF0EC;
    --bg-card: #F4F8F5;
    --pine-dark: #2C4A1E;
    --pine-deeper: #1A3022;
    --moss: #4A7C35;
    --moss-light: #7AAB5E;
    --gold: #C9973A;
    --gold-light: #E8C97A;
    --muted: #6D7A6B;
    --border-light: #E5EAE2;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --logo-green: #24843d;
    --logo-green-light: #5db204;
    --logo-orange: #ef6302;
    --logo-orange-light: #fe9a02;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--pine-dark);
    min-height: 100vh;
    display: flex;
    padding: 32px 20px;
    position: relative;
    overflow-x: hidden;
    background: var(--bg-main);
}
    /* soft ambient accents */
    body::before {
        content: '';
        position: fixed;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        top: -180px;
        right: -140px;
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(circle, rgba(201,151,58,0.16) 0%, transparent 70%);
    }

    body::after {
        content: '';
        position: fixed;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        bottom: -180px;
        left: -150px;
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(circle, rgba(122,171,94,0.18) 0%, transparent 70%);
    }

a {
    text-decoration: none;
}

.card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 44px 44px;
    box-shadow: 0 18px 60px rgba(26,48,34,0.10);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--logo-green);
    margin-bottom: 28px;
}

    .brand:hover {
        color: var(--logo-green-light);
    }

        .brand:hover .accent {
            color: var(--logo-orange-light);
        }

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(201,151,58,0.14);
    border: 1px solid rgba(201,151,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.brand .accent {
    color: var(--logo-orange);
}

.title {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--pine-deeper);
    margin-bottom: 8px;
}

.lede {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--pine-dark);
    transition: all 0.2s;
}

    .google-btn:hover {
        border-color: var(--moss);
        background: var(--bg-card);
    }

    .google-btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 12px;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border-light);
    }

.field {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pine-dark);
    margin-bottom: 7px;
}

.field-wrap {
    position: relative;
}

.field-input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--pine-deeper);
    transition: all 0.2s;
}

    .field-input::placeholder, .field-input > input::placeholder {
        color: #aab5a8;
    }

    .field-input:focus, .field-input > input:focus {
        outline: none;
        border-color: var(--moss);
        box-shadow: 0 0 0 3px rgba(74,124,53,0.12);
    }

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--muted);
    padding: 4px;
    line-height: 1;
}

.field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--muted);
}

    .remember input {
        width: 16px;
        height: 16px;
        accent-color: var(--moss);
        cursor: pointer;
    }

.forgot {
    color: var(--moss);
    font-weight: 600;
    transition: color 0.2s;
}

    .forgot:hover {
        color: var(--pine-deeper);
    }

.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .submit-btn:hover {
        background: var(--pine-deeper);
    }

    .submit-btn .arr {
        transition: transform 0.2s;
    }

    .submit-btn:hover .arr {
        transform: translateX(3px);
    }

.swap-line {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted);
}

    .swap-line a {
        color: var(--moss);
        font-weight: 700;
    }

        .swap-line a:hover {
            color: var(--pine-deeper);
        }

.home-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--muted);
    transition: color 0.2s;
}

    .home-link:hover {
        color: var(--pine-dark);
    }

.g-up {
    opacity: 0;
    transform: translateY(18px);
}

@media (max-width: 440px) {
    .card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .title {
        font-size: 26px;
    }
}

