
    /* ---------- Login Layout ---------- */
    .login-wrapper {
        display: flex;
        min-height: 100vh;
    }

    /* ---------- Left Panel ---------- */
    .login-left {
        width: 400px;
        min-width: 400px;
        background-color: hsl(220, 16%, 12%);
        display: flex;
        flex-direction: column;
        padding: 32px;
        position: relative;
        overflow: hidden;
    }


    .login-left-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 64px;
        position: relative;
        z-index: 1;
    }

    .login-left-logo-icon {
        width: 40px;
        height: 40px;
        background: var(--primary, #6c5ce7);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        flex-shrink: 0;
    }

    .login-left-logo-name {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.2px;
    }

    .login-left-body {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .login-left-headline {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .login-left-headline span {
        color: #00b894;
    }

    .login-left-sub {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
        margin-bottom: 48px;
    }

    .login-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .login-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .login-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #00b894;
    }

    .login-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .login-feature-title {
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 3px;
    }

    .login-feature-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.5;
    }

    .login-left-footer {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
        position: relative;
        z-index: 1;
        margin-top: 48px;
    }

    /* ---------- Right Panel ---------- */
    .login-right {
        flex: 1;
        background-color: #f8f9fb;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
    }

    .login-card {
        width: 100%;
        max-width: 360px;
    }

    .login-card-title {
        font-size: 26px;
        font-weight: 700;
        color: #2d3436;
        margin-bottom: 6px;
    }

    .login-card-subtitle {
        font-size: 14px;
        color: #636e72;
        margin-bottom: 36px;
    }

    .login-form-label {
        font-size: 14px;
        font-weight: 500;
        color: #2d3436;
        margin-bottom: 8px;
        display: block;
    }

    .login-form-control {
        width: 100%;
        border: 1.5px solid #e9ecef;
        border-radius: 10px;
        padding: 11px 16px;
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        color: #2d3436;
        background: #ffffff;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .login-form-control:focus {
        border-color: var(--primary, #6c5ce7);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    }

    .login-form-control::placeholder {
        color: #b2bec3;
    }

    .login-password-wrapper {
        position: relative;
    }

    .login-password-wrapper .login-form-control {
        padding-right: 44px;
    }

    .login-password-toggle {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #b2bec3;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.15s ease;
    }

    .login-password-toggle:hover {
        color: #636e72;
    }

    .login-password-toggle svg {
        width: 18px;
        height: 18px;
    }

    .login-forgot-link {
        font-size: 13px;
        color: var(--primary, #6c5ce7);
        font-weight: 500;
        text-decoration: none;
        transition: opacity 0.15s ease;
    }

    .login-forgot-link:hover {
        opacity: 0.75;
    }

    .login-field-group {
        margin-bottom: 20px;
    }

    .login-field-group:last-of-type {
        margin-bottom: 28px;
    }

    .login-btn-submit {
        width: 100%;
        padding: 13px;
        background-color: var(--primary, #6c5ce7);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        letter-spacing: 0.1px;
    }

    .login-btn-submit:hover {
        background-color: #5a4bd1;
    }

    .login-btn-submit:active {
        transform: scale(0.99);
    }

    .login-signup-text {
        margin-top: 24px;
        text-align: center;
        font-size: 14px;
        color: #636e72;
    }

    .login-signup-text a {
        color: var(--primary, #6c5ce7);
        font-weight: 600;
        text-decoration: none;
    }

    .login-signup-text a:hover {
        text-decoration: underline;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
        .login-left {
            display: none;
        }

        .login-right {
            background-color: #ffffff;
        }
    }
