    /* ==================== CSS VARIABLES ==================== */
    :root {
        --background: hsl(36, 25%, 97%);
        --foreground: hsl(222, 47%, 11%);
        --primary: hsl(222, 47%, 14%);
        --primary-foreground: hsl(45, 100%, 96%);
        --muted: hsl(36, 20%, 95%);
        --muted-foreground: hsl(220, 9%, 46%);
        --accent: hsl(38, 72%, 44%);
        --accent-foreground: hsl(0, 0%, 100%);
        --border: hsl(220, 13%, 91%);
        --radius: 0.75rem;
    }

    /* ==================== RESET ==================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Lora', serif;
        background: #f8f6f1;
        color: var(--foreground);
        line-height: 1.6;
    }

    .font-playfair {
        font-family: 'Playfair Display', serif;
    }

    .italic {
        font-style: italic;
    }

    a {
        text-decoration: none;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
    }

    input {
        font-family: inherit;
    }

    /* ==================== LAYOUT ==================== */
    .account-page {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
        .account-page {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* ==================== LEFT PANEL - FORM ==================== */
    .left-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem 1.5rem;
    }

    @media (min-width: 1024px) {
        .left-panel {
            padding: 0;
        }
    }

    .form-container {
        width: 100%;
        max-width: 28rem;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 3rem;
        margin-top: 15px;
    }

    .logo img {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.75rem;
        object-fit: cover;
    }

    .logo-text {
        font-weight: 600;
        font-size: 1.25rem;
        color: var(--primary);
        letter-spacing: -0.02em;
    }

    .form-header {
        margin-bottom: 2.5rem;
    }

    .form-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
        .form-title {
            font-size: 2.5rem;
        }
    }

    .form-subtitle {
        color: var(--muted-foreground);
        font-size: 1rem;
        font-weight: 300;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--primary);
        opacity: 0.8;
        margin-bottom: 0.5rem;
    }

    .input-wrapper {
        position: relative;
    }

    .input-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1rem;
        height: 1rem;
        color: var(--muted-foreground);
        pointer-events: none;
    }

    .form-input {
        width: 100%;
        padding: 1.5rem 1rem 1.5rem 2.75rem;
        font-size: 0.875rem;
        border-radius: 0.75rem;
        background: white;
        border: 1px solid var(--border);
        transition: border-color 0.2s;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--accent);
    }

    .form-input.with-right-icon {
        padding-right: 2.75rem;
    }

    .toggle-password {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted-foreground);
        transition: color 0.2s;
    }

    .toggle-password:hover {
        color: var(--primary);
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 1.5rem;
    }

    .forgot-password-btn {
        font-size: 0.875rem;
        color: var(--accent);
        font-weight: 500;
        transition: opacity 0.2s;
    }

    .forgot-password-btn:hover {
        opacity: 0.8;
    }

    .submit-btn {
        width: 100%;
        padding: 1.5rem;
        background: var(--primary);
        color: var(--primary-foreground);
        font-weight: 600;
        font-size: 0.875rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s;
    }

    .submit-btn:hover {
        opacity: 0.9;
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .submit-btn svg {
        width: 1rem;
        height: 1rem;
    }

    .spinner {
        width: 1rem;
        height: 1rem;
        border: 2px solid var(--primary-foreground);
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .divider {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }

    .divider-line {
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .divider-text {
        font-size: 0.625rem;
        color: var(--muted-foreground);
        text-transform: uppercase;
    }

    .signup-text {
        text-align: center;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .signup-link {
        color: var(--accent);
        font-weight: 500;
        transition: opacity 0.2s;
    }

    .signup-link:hover {
        opacity: 0.8;
    }

    .terms-text {
        text-align: center;
        font-size: 0.625rem;
        color: var(--muted-foreground);
        margin-top: 1.5rem;
    }

    .terms-link {
        color: var(--accent);
    }

    .terms-link:hover {
        text-decoration: underline;
    }

    /* ==================== RIGHT PANEL - VISUAL ==================== */
    .right-panel {
        display: none;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        background: var(--primary);
        position: relative;
        overflow: hidden;
    }

    @media (min-width: 1024px) {
        .right-panel {
            display: flex;
        }
    }

    .right-panel-bg {
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background: radial-gradient(circle at 70% 20%, hsl(38 72% 44%) 0%, transparent 55%), radial-gradient(circle at 20% 80%, hsl(222 47% 25%) 0%, transparent 50%);
    }

    .right-panel-content {
        position: relative;
        z-index: 10;
        max-width: 28rem;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        border: 1px solid rgba(217, 119, 6, 0.3);
        background: rgba(217, 119, 6, 0.1);
        color: var(--accent);
        font-size: 0.625rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
    }

    .badge svg {
        width: 0.75rem;
        height: 0.75rem;
    }

    .panel-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--primary-foreground);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
        .panel-title {
            font-size: 2.5rem;
        }
    }

    .panel-subtitle {
        color: var(--primary-foreground);
        opacity: 0.6;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.75;
    }

    .benefits-list {
        margin-top: 3rem;
    }

    .benefit-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .benefit-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.75rem;
        background: rgba(217, 119, 6, 0.15);
        border: 1px solid rgba(217, 119, 6, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .benefit-icon svg {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--accent);
    }

    .benefit-text h3 {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--primary-foreground);
        margin-bottom: 0.25rem;
    }

    .benefit-text p {
        font-size: 0.875rem;
        color: var(--primary-foreground);
        opacity: 0.5;
    }

    @media(max-width: 786px) {

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 3rem;
            margin-top: 5px;
        }
    }