
        /* Reset and Base Styles */
        * {
            padding: 0;
            box-sizing: border-box;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        :root {
            --text-color: #000000;
            --text-secondary: #555555;
            --text-light: #777777;
            --background: #ffffff;
            --input-border: #e0e0e0;
            --primary-color: #476ceb;
            --primary-hover: #4d4d4d;
            --divider-color: #e5e5e5;
        }

        html, body {
            height: 100%;
            overflow: hidden;
        }

        body {
            color: var(--text-color);
            display: flex;
            min-height: 100vh;
        }

        /* Login Section */
        .ark-login-section {
            width: 35%;
            min-width: 420px;
            height: 100vh;
            padding: 40px;
            background-color: var(--background);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ark-login-logo {
            position: absolute;
            top: 40px;
            left: 5%;
        }

        .ark-login-logo svg {
            width: 180px;
            height: auto;
        }

        .ark-login-container {
            max-width: 360px;
            width: 100%;
            margin: 0 auto;
        }

        .ark-login-title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        /* Form Elements */
        .ark-login-form {
            display: flex;
            flex-direction: column;
        }

        .ark-login-form-label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-color);
        }

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

        .ark-login-form-input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--input-border);
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            background-color: var(--background);
            /* Disable autofill styling */
            -webkit-autofill: none;
        }

        .ark-login-form-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* This helps prevent browsers from filling out the form */
        .ark-login-form-input:-webkit-autofill,
        .ark-login-form-input:-webkit-autofill:hover,
        .ark-login-form-input:-webkit-autofill:focus,
        .ark-login-form-input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px white inset !important;
            -webkit-text-fill-color: var(--text-color) !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        .ark-login-password-info {
            font-size: 13px;
            color: var(--text-light);
            margin-top: 6px;
        }

        .ark-login-button {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: none;
            background-color: var(--primary-color);
            color: white;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .ark-login-button:hover {
            background-color: var(--primary-hover);
        }

        .ark-login-forgot {
            font-size: 14px;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            margin: 5px 0 25px;
            display: inline-block;
        }

        .ark-login-forgot:hover {
            text-decoration: underline;
        }

        .ark-login-divider {
            display: flex;
            align-items: center;
            margin: 10px 0 20px;
            color: var(--text-light);
            font-size: 14px;
        }

        .ark-login-divider::before,
        .ark-login-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: var(--divider-color);
        }

        .ark-login-divider::before {
            margin-right: 15px;
        }

        .ark-login-divider::after {
            margin-left: 15px;
        }

        /* Social Login Button */
        .ark-login-google-button {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--input-border);
            background-color: var(--background);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .ark-login-google-button:hover {
            background-color: #f9f9f9;
        }

        .ark-login-signup {
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .ark-login-signup-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
        }

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

        /* Hero Section */
        .ark-login-hero {
            flex: 1;
            position: relative;
            overflow: hidden;
            background-color: #e9e1d6;
        }

        .ark-login-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .ark-login-hero-content {
            position: absolute;
            bottom: 80px;
            left: 50px;
            max-width: 600px;
        }

        .ark-login-hero-title {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color:rgb(255, 255, 255);
        }

        .ark-login-hero-description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color:rgb(255, 255, 255);
        }

        .ark-login-hero-rating {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .ark-login-hero-stars {
            display: flex;
            align-items: center;
            color: #ffb800;
        }

        .ark-login-hero-stars-text {
            margin-left: 8px;
            font-weight: 600;
            color:rgb(255, 255, 255);
        }

        .ark-login-hero-reviews {
            font-size: 14px;
            color:rgb(255, 255, 255);
        }

        .ark-login-hero-users {
            display: flex;
            margin-top: 20px;
        }

        .ark-login-hero-user {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-right: -12px;
            overflow: hidden;
        }

        .ark-login-hero-user img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ark-login-hero-decorative {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .ark-login-hero-decorative-1 {
            width: 100px;
            height: 100px;
            top: 100px;
            right: 100px;
        }

        .ark-login-hero-decorative-2 {
            width: 60px;
            height: 60px;
            top: 200px;
            left: 120px;
        }

        .ark-login-hero-decorative-3 {
            width: 80px;
            height: 80px;
            bottom: 200px;
            right: 200px;
        }

        .ark-login-hero-sparkle {
            position: absolute;
            width: 30px;
            height: 30px;
            bottom: 300px;
            left: 200px;
            color: #FFC700;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .ark-login-section {
                width: 50%;
                min-width: 400px;
            }
            
            .ark-login-hero-content {
                left: 30px;
                bottom: 60px;
                max-width: 450px;
            }
            
            .ark-login-hero-title {
                font-size: 42px;
            }
        }

        @media (max-width: 900px) {
            body {
                flex-direction: column;
                overflow-y: auto;
                height: auto;
            }
            
            .ark-login-section {
                width: 100%;
                min-width: 100%;
                height: 100vh;
                order: 2;
            }

            .ark-login-logo {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 30px;
            }
            
            .ark-login-hero {
                height: 500px;
                width: 100%;
                order: 2;
            }
            
            .ark-login-hero-content {
                left: 20px;
                bottom: 30px;
                max-width: 80%;
            }
            
            .ark-login-hero-title {
                font-size: 36px;
            }
            
            .ark-login-hero-description {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .ark-login-section {
                padding: 30px 20px;
            }
            
            .ark-login-hero {
                height: 400px;
            }
            
            .ark-login-hero-content {
                left: 15px;
                bottom: 20px;
                max-width: 90%;
            }
            
            .ark-login-hero-title {
                font-size: 30px;
                margin-bottom: 10px;
            }
            
            .ark-login-hero-description {
                font-size: 14px;
                margin-bottom: 15px;
            }
        }
        
        .ark-login-hero-apply {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .ark-login-apply-button {
            background-color: white;
            color: var(--text-color, #000);
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .ark-login-apply-button:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .ark-login-apply-logo {
            width: 75px;
            height: 28px;
            display: inline-block;
            vertical-align: middle;
        }

        .countdown-container {
            display: flex;
            align-items: center;
            margin-left: 16px;
        }

        .countdown-label {
            margin-right: 8px;
            color: #b6b6b6;
            font-size: 14px;
        }

        .countdown-time {
            display: flex;
            gap: 4px;
        }

        .countdown-time span {
            background-color: #f0f0f0;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            min-width: 34px;
            text-align: center;
        }
    