   
        :root {
            --ns-cream: #fffaf3;
            --ns-cream-soft: #f7f1e8;
            --ns-text: #241812;
            --ns-muted: #6f6258;
            --ns-border: #d8cab9;
            --ns-brown: #28190f;
            --ns-brown-hover: #3b2618;
            --ns-gold: #b58a58;
            --ns-error-bg: #fff1f1;
            --ns-error-border: #d9a4a4;
            --ns-error-text: #842020;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--ns-text);
            background: #1f160f;
        }

        a {
            color: var(--ns-gold);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .login-page {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 50px 8%;
            overflow: hidden;
            background:
                linear-gradient(
                    90deg,
                    rgba(20, 13, 8, 0.18) 0%,
                    rgba(20, 13, 8, 0.24) 45%,
                    rgba(20, 13, 8, 0.42) 100%
                ),
                url('../assets/images/account/account-login-bg.png') center center / cover no-repeat; 
        }

        .login-card {
            width: 100%;
            max-width: 460px;
            padding: 44px 42px;
            border-radius: 22px;
            background: rgba(255, 250, 243, 0.96);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(8px);
        }

        .account-logo {
            text-align: center;
            margin-bottom: 34px;
        }

        .account-logo .brand {
            display: block;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 25px;
            letter-spacing: 6px;
            line-height: 1;
            color: var(--ns-text);
        }

        .account-logo .sub-brand {
            display: block;
            margin-top: 11px;
            font-size: 10px;
            letter-spacing: 7px;
            color: var(--ns-gold);
            text-transform: uppercase;
        }

        .account-logo .leaf {
            display: block;
            margin-top: 14px;
            color: var(--ns-gold);
            font-size: 18px;
            line-height: 1;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 24px;
            font-size: 14px;
            color: var(--ns-gold);
        }

        .login-card h1 {
            margin: 0;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 40px;
            font-weight: 400;
            line-height: 1.1;
            color: var(--ns-text);
        }

        .gold-line {
            width: 52px;
            height: 1px;
            margin: 18px 0 20px;
            background: var(--ns-gold);
        }

        .intro {
            margin: 0 0 28px;
            color: var(--ns-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .form-errors {
            margin-bottom: 22px;
            padding: 13px 15px;
            border: 1px solid var(--ns-error-border);
            border-radius: 6px;
            background: var(--ns-error-bg);
            color: var(--ns-error-text);
            font-size: 14px;
        }

        .form-errors p {
            margin: 0;
        }

        .form-errors p + p {
            margin-top: 8px;
        }

        .form-group {
            margin-bottom: 18px;
        }

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

        .input-wrap {
            position: relative;
        }

        .input-wrap input {
            width: 100%;
            height: 48px;
            padding: 0 44px 0 42px;
            border: 1px solid var(--ns-border);
            border-radius: 4px;
            background: #fffdf9;
            color: var(--ns-text);
            font-size: 14px;
            outline: none;
        }

        .input-wrap input:focus {
            border-color: var(--ns-gold);
            box-shadow: 0 0 0 3px rgba(181, 138, 88, 0.16);
        }

        .input-icon-left,
        .input-icon-right {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--ns-muted);
            font-size: 14px;
            line-height: 1;
            pointer-events: none;
        }

        .input-icon-left {
            left: 14px;
        }

        .input-icon-right {
            right: 14px;
        }

        .login-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin: 4px 0 24px;
            font-size: 13px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--ns-muted);
            cursor: pointer;
        }

        .remember-me input {
            width: 16px;
            height: 16px;
            margin: 0;
            accent-color: var(--ns-brown);
        }

        .primary-button {
            width: 100%;
            height: 52px;
            border: 0;
            border-radius: 4px;
            background: var(--ns-brown);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .primary-button:hover {
            background: var(--ns-brown-hover);
        }

        .secondary-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 52px;
            margin-top: 16px;
            border: 1px solid var(--ns-brown);
            border-radius: 4px;
            color: var(--ns-brown);
            background: transparent;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .secondary-button:hover {
            background: rgba(40, 25, 15, 0.06);
            text-decoration: none;
        }

        .help-text {
            margin: 26px 0 0;
            text-align: center;
            color: var(--ns-muted);
            font-size: 13px;
        }

        @media (max-width: 950px) {
            .login-page {
                justify-content: center;
                padding: 36px 22px;
                background-position: center center;
            }

            .login-page::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(20, 13, 8, 0.32);
            }

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

        @media (max-width: 520px) {
            .login-page {
                align-items: flex-start;
                min-height: 100vh;
                padding: 28px 16px;
            }

            .login-card {
                max-width: none;
                padding: 30px 22px;
                border-radius: 18px;
                margin-top: 24px;
            }

            .account-logo {
                margin-bottom: 26px;
            }

            .account-logo .brand {
                font-size: 20px;
                letter-spacing: 4px;
            }

            .account-logo .sub-brand {
                font-size: 9px;
                letter-spacing: 5px;
            }

            .back-link {
                margin-bottom: 20px;
            }

            .login-card h1 {
                font-size: 34px;
            }

            .intro {
                font-size: 14px;
            }

            .login-options {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }

            .primary-button,
            .secondary-button,
            .input-wrap input {
                height: 50px;
            }
        }
.register-page {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 50px 8%;
            overflow: hidden;
            background:
                linear-gradient(
                    90deg,
                    rgba(20, 13, 8, 0.18) 0%,
                    rgba(20, 13, 8, 0.24) 45%,
                    rgba(20, 13, 8, 0.42) 100%
                ),
                 url('../assets/images/account/account-register-bg.png') center center / cover no-repeat; 
        }

        .register-card {
            width: 100%;
            max-width: 520px;
            padding: 40px 42px;
            border-radius: 22px;
            background: rgba(255, 250, 243, 0.96);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(8px);
        }

        .account-logo {
            text-align: center;
            margin-bottom: 28px;
        }

        .account-logo .brand {
            display: block;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 25px;
            letter-spacing: 6px;
            line-height: 1;
            color: var(--ns-text);
        }

        .account-logo .sub-brand {
            display: block;
            margin-top: 11px;
            font-size: 10px;
            letter-spacing: 7px;
            color: var(--ns-gold);
            text-transform: uppercase;
        }

        .account-logo .leaf {
            display: block;
            margin-top: 14px;
            color: var(--ns-gold);
            font-size: 18px;
            line-height: 1;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 22px;
            font-size: 14px;
            color: var(--ns-gold);
        }

        .register-card h1 {
            margin: 0;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 38px;
            font-weight: 400;
            line-height: 1.1;
            color: var(--ns-text);
        }

        .gold-line {
            width: 52px;
            height: 1px;
            margin: 16px 0 18px;
            background: var(--ns-gold);
        }

        .intro {
            margin: 0 0 24px;
            color: var(--ns-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .form-errors {
            margin-bottom: 20px;
            padding: 13px 15px;
            border: 1px solid var(--ns-error-border);
            border-radius: 6px;
            background: var(--ns-error-bg);
            color: var(--ns-error-text);
            font-size: 14px;
        }

        .form-errors p {
            margin: 0;
        }

        .form-errors p + p {
            margin-top: 8px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            margin-bottom: 17px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

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

        .input-wrap {
            position: relative;
        }

        .input-wrap input {
            width: 100%;
            height: 48px;
            padding: 0 16px;
            border: 1px solid var(--ns-border);
            border-radius: 4px;
            background: #fffdf9;
            color: var(--ns-text);
            font-size: 14px;
            outline: none;
        }

        .input-wrap.has-icon input {
            padding-left: 42px;
        }

        .input-wrap input:focus {
            border-color: var(--ns-gold);
            box-shadow: 0 0 0 3px rgba(181, 138, 88, 0.16);
        }

        .input-icon-left {
            position: absolute;
            top: 50%;
            left: 14px;
            transform: translateY(-50%);
            color: var(--ns-muted);
            font-size: 14px;
            line-height: 1;
            pointer-events: none;
        }

        .marketing-box {
            display: flex;
            gap: 10px;
            margin: 3px 0 22px;
            color: var(--ns-muted);
            font-size: 13px;
            line-height: 1.5;
            cursor: pointer;
        }

        .marketing-box input {
            width: 16px;
            height: 16px;
            margin: 2px 0 0;
            flex: 0 0 auto;
            accent-color: var(--ns-brown);
        }

        .primary-button {
            width: 100%;
            height: 52px;
            border: 0;
            border-radius: 4px;
            background: var(--ns-brown);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .primary-button:hover {
            background: var(--ns-brown-hover);
        }

        .secondary-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 52px;
            margin-top: 16px;
            border: 1px solid var(--ns-brown);
            border-radius: 4px;
            color: var(--ns-brown);
            background: transparent;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .secondary-button:hover {
            background: rgba(40, 25, 15, 0.06);
            text-decoration: none;
        }

        .help-text {
            margin: 24px 0 0;
            text-align: center;
            color: var(--ns-muted);
            font-size: 13px;
        }

        @media (max-width: 950px) {
            .register-page {
                justify-content: center;
                padding: 36px 22px;
                background-position: center center;
            }

            .register-page::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(20, 13, 8, 0.34);
            }

            .register-card {
                position: relative;
                z-index: 1;
            }
        }

        @media (max-width: 620px) {
            .register-page {
                align-items: flex-start;
                min-height: 100vh;
                padding: 28px 16px;
            }

            .register-card {
                max-width: none;
                padding: 30px 22px;
                border-radius: 18px;
                margin-top: 24px;
            }

            .account-logo {
                margin-bottom: 24px;
            }

            .account-logo .brand {
                font-size: 20px;
                letter-spacing: 4px;
            }

            .account-logo .sub-brand {
                font-size: 9px;
                letter-spacing: 5px;
            }

            .back-link {
                margin-bottom: 18px;
            }

            .register-card h1 {
                font-size: 32px;
            }

            .intro {
                font-size: 14px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .primary-button,
            .secondary-button,
            .input-wrap input {
                height: 50px;
            }
        }.notice-box {
    margin-bottom: 22px;
    padding: 13px 15px;
    border: 1px solid #d8cab9;
    border-radius: 6px;
    background: #fffaf3;
    color: #241812;
    font-size: 14px;
}