
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            font-family: "Noto Sans", sans-serif;
            overflow-x: hidden;
        }

        .logo-box{
            width: 100%;
    text-align: center;
        }

        .auth-panel {
            min-height: 100vh;
            color: #171714;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 8%;
            position: relative;
            background: #fff;

        }

        .auth-panel::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgb(230 196 47 / 17%);
            filter: blur(2px);
            top: -200px;
            right: -150px;
        }

        .auth-wrapper {
            width: 100%;
            max-width: 470px;
            position: relative;
            z-index: 2;
        }

        .mobile-brand {
            display: none;
        }

        .auth-heading {
            margin-bottom: 14px;
                display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
        }

        .auth-heading .mini-title {
            display: inline-block;
            color: rgb(23, 23, 23);
            font-size: 16px;
            line-height: 1;
            letter-spacing: 5px;
            font-weight: 600;
            margin-bottom: 17px;
            text-transform: uppercase;
            padding: 4px 8px 5px;
            background: #e6c42f;
        }

        .auth-heading h2 {
    font-size: 40px;
    line-height: 0.99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    text-align: center;
        }

        .auth-heading p {
            font-size: 16px;
            line-height: 1.75;
            margin-top: 14px;
            color: rgb(0, 0, 0);
                text-align: center;
        }

        /* =========================
           FORM
        ========================= */

        .form-box {
            position: relative;
        }

        .auth-form {
            display: none;
            animation: formIn 0.45s ease;
        }

        .auth-form.active {
            display: block;
        }

        .field {
            position: relative;
            margin-bottom: 18px;
        }

        .field input {
            width: 100%;
            height: 58px;
            padding: 20px 48px 7px 17px;
            border: 1px solid #d7d1c6;
            background: rgba(255, 255, 255, 0.35);
            outline: none;
            color: #171714;
            font-size: 13px;
            transition: 0.3s ease;
        }

        .field input:hover {
            border-color: #bcb3a4;
        }

        .field input:focus {
            border-color: #e6c42f;
            background: rgba(255, 255, 255, 0.65);
            box-shadow: 0 0 0 3px rgba(185, 154, 99, 0.08);
        }

        .field label {
            position: absolute;
            left: 17px;
            top: 20px;
            font-size: 13px;
            color: #8d887f;
            pointer-events: none;
            transition: 0.25s ease;
            background: transparent;
        }

        .field input:focus+label,
        .field input:not(:placeholder-shown)+label {
            top: 7px;
            font-size: 9px;
            letter-spacing: 1px;
            color: #8d754c;
            text-transform: uppercase;
        }

        .field-icon {
            position: absolute;
            right: 17px;
            top: 21px;
            color: #999289;
            font-size: 13px;
            pointer-events: none;
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 20px;
            border: 0;
            background: transparent;
            color: #89847b;
            cursor: pointer;
            font-size: 13px;
        }

        .password-toggle:hover {
            color: #e6c42f;
        }

        .form-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 3px 0 25px;
        }

        .remember {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #716d65;
            font-size: 11px;
            cursor: pointer;
        }

        .remember input {
            appearance: none;
            width: 14px;
            height: 14px;
            border: 1px solid #c7c0b5;
            cursor: pointer;
            position: relative;
        }

        .remember input:checked {
            background: #e6c42f;
            border-color: #e6c42f;
        }

        .remember input:checked::after {
            content: "✓";
            position: absolute;
            color: white;
            font-size: 9px;
            left: 3px;
            top: 0px;
        }

        .forgot {
            color: #000;
            text-decoration: none;
            font-size: 11px;
            transition: 0.2s ease;
        }

        .forgot:hover {
            color: #4c3d26;
        }

        .primary-btn {
            width: 100%;
            height: 58px;
            border: 0;
            background: #11110f;
            color: #f4f0e8;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 13px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .primary-btn::before {
            content: "";
            position: absolute;
            inset: 0;
            background: #e6c42f;
            transform: translateX(-101%);
            transition: 0.4s ease;
        }

        .primary-btn span,
        .primary-btn i {
            position: relative;
            z-index: 1;
        }

        .primary-btn:hover::before {
            transform: translateX(0);
        }

        .primary-btn:hover {
            color: #fff;
        }

        /* =========================
           DIVIDER
        ========================= */

        .divider {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 27px 0;
            color: #a09a91;
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .divider::before,
        .divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: #d8d1c6;
        }

        /* =========================
           SOCIAL
        ========================= */

        .social-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .social-btn {
            height: 51px;
            border: 1px solid #d7d1c6;
            background: transparent;
            color: #4c4943;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            font-size: 11px;
            transition: 0.3s ease;
        }

        .social-btn i {
            font-size: 13px;
        }

        .social-btn:hover {
            border-color: #e6c42f;
            background: rgba(185, 154, 99, 0.05);
        }

        /* =========================
           SWITCH
        ========================= */
        .auth-form a{
            margin-top: 20px;
    font-size: 12px;
    color: #000000;
    display: flex;
    justify-content: center;
    font-family: "Noto Sans", sans-serif;
        }

        .switch-auth {
            text-align: center;
            margin-top: 31px;
            font-size: 12px;
            color: #77736b;
        }

        .switch-auth a{
                font-size: 12px;
    color: #000000;
    display: contents;
    font-family: "Noto Sans", sans-serif;
        }

        .switch-auth button {
            border: 0;
            background: transparent;
            color: #000;
            font-size: 12px;
            cursor: pointer;
            font-weight: 600;
            margin-left: 5px;
            position: relative;
        }

        .switch-auth button::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 100%;
            height: 1px;
            background: #e6c42f;
            transform: scaleX(0);
            transform-origin: right;
            transition: 0.3s ease;
        }

        .switch-auth button:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .terms {
            text-align: center;
            margin-top: 24px;
            font-size: 9px;
            line-height: 1.7;
            color: #a09a91;
        }

        .terms a {
            color: #e6c42f;
            text-decoration: none;
        }

        /* =========================
           SIGNUP SPECIFIC
        ========================= */

        .signup-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .signup-grid .field {
            margin-bottom: 12px;
        }

        .signup-grid .field.full {
            grid-column: 1 / -1;
        }

        /* =========================
           ANIMATIONS
        ========================= */

        @keyframes imageReveal {
            from {
                opacity: 0;
                transform: scale(1.1);
            }

            to {
                opacity: 0.82;
                transform: scale(1.03);
            }
        }

        @keyframes formIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================
   RESET PASSWORD
========================= */

.reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    position: relative;
    background: #fff;
}

.reset-container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(230 196 47 / 17%);
    filter: blur(2px);
    top: -200px;
    right: -150px;
}

.reset-box {
    width: 100%;
    max-width: 470px;
    position: relative;
    z-index: 2;
}

/* Heading */

.reset-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.reset-heading .mini-title {
    display: inline-block;
    color: rgb(23, 23, 23);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
    padding: 4px 8px 5px;
    background: #e6c42f;
}

.reset-heading h2 {
    font-size: 40px;
    line-height: 0.99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    text-align: center;
}

.reset-heading p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
    color: #000;
    text-align: center;
}

/* Form */

.reset-form .field {
    position: relative;
    margin-bottom: 18px;
}

.reset-form .field input {
    width: 100%;
    height: 58px;
    padding: 20px 17px 7px;
    border: 1px solid #d7d1c6;
    background: rgba(255, 255, 255, 0.35);
    outline: none;
    color: #171714;
    font-size: 13px;
    transition: 0.3s ease;
}

.reset-form .field input:hover {
    border-color: #bcb3a4;
}

.reset-form .field input:focus {
    border-color: #e6c42f;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(185, 154, 99, 0.08);
}

.reset-form .field label {
    position: absolute;
    left: 17px;
    top: 20px;
    font-size: 13px;
    color: #8d887f;
    pointer-events: none;
    transition: 0.25s ease;
}

.reset-form .field input:focus + label,
.reset-form .field input:not(:placeholder-shown) + label {
    top: 7px;
    font-size: 9px;
    letter-spacing: 1px;
    color: #8d754c;
    text-transform: uppercase;
}

/* Button */

.reset-form .primary-btn {
    width: 100%;
    height: 58px;
    border: 0;
    background: #11110f;
    color: #f4f0e8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.reset-form .primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e6c42f;
    transform: translateX(-101%);
    transition: 0.4s ease;
}

.reset-form .primary-btn span,
.reset-form .primary-btn i {
    position: relative;
    z-index: 1;
}

.reset-form .primary-btn:hover::before {
    transform: translateX(0);
}

.reset-form .primary-btn:hover {
    color: #fff;
}

/* Back to Login */

.reset-login {
    text-align: center;
    margin-top: 25px;
}

.reset-login a {
    text-align: center;
    margin-top: 31px;
    font-size: 12px;
    color: #77736b;
}

.reset-login a:hover {
    color: #4c3d26;
}

/* Message */

.reset-message {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 24px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.reset-message.error {
    color: #a12622;
    background: #fff5f4;
    border: 1px solid #f1cbc8;
}

.reset-message.success {
    color: #176b45;
    background: #f1faf5;
    border: 1px solid #c6e5d3;
}

/* Responsive */

@media (max-width: 767px) {

    .reset-container {
        min-height: 100vh;
        padding: 30px 22px;
    }

    .reset-box {
        max-width: 520px;
    }

    .reset-heading h2 {
        font-size: 39px;
    }
}

@media (max-width: 420px) {

    .reset-container {
        padding: 24px 18px;
    }

    .reset-heading h2 {
        font-size: 35px;
    }

    .reset-form .field input,
    .reset-form .primary-btn {
        height: 55px;
    }
}
        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 1000px) {

            .auth-page {
                grid-template-columns: 42% 58%;
            }

            .visual-content {
                padding: 35px;
            }

            .visual-bottom h1 {
                font-size: 50px;
            }

            .auth-panel {
                padding: 40px;
            }
        }

        @media (max-width: 767px) {

            .auth-panel::before {
    width: 350px;
    height: 350px;
}

            .auth-page {
                display: block;
            }

            .auth-visual {
                display: none;
            }

            .auth-panel {
                min-height: 100vh;
                padding: 30px 22px;
                display: flex;
    align-items: center;
            }

            .auth-wrapper {
                max-width: 520px;
                margin: 0 auto;
                padding-top: 15px;
            }

            .mobile-brand {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                color: #11110f;
                text-decoration: none;
                margin-bottom: 50px;
            }

            .mobile-brand .brand-mark {
                color: #e6c42f;
                border-color: #e6c42f;
            }

            .mobile-brand .brand-name {
                color: #11110f;
            }

            .auth-heading {
                margin-bottom: 30px;
            }

            .auth-heading h2 {
                font-size: 39px;
            }

            .social-buttons {
                grid-template-columns: 1fr;
            }

            .signup-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .signup-grid .field.full {
                grid-column: auto;
            }
        }

        @media (max-width: 420px) {

            .auth-panel {
                padding: 24px 18px;
            }

            .mobile-brand {
                margin-bottom: 40px;
            }

            .auth-heading h2 {
                font-size: 35px;
            }

            .field input,
            .primary-btn {
                height: 55px;
            }
        }

        .auth-message {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 24px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-sizing: border-box;
}

.auth-message i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-size: 14px;
}

.auth-message.error {
    color: #a12622;
    background: #fff5f4;
    border: 1px solid #f1cbc8;
}

.auth-message.error i {
    color: #b42318;
}

.auth-message.success {
    color: #176b45;
    background: #f1faf5;
    border: 1px solid #c6e5d3;
}

.auth-message.success i {
    color: #198754;
}