  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold-primary: #c9a030;
            --gold-dark: #a67d1a;
            --light-gray: #f5f5f5;
            --text-dark: #333333;
            --text-light: #666666;
            --border-color: #e0e0e0;
            --white: #ffffff;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
                'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
        }

        .login_main {
            display: flex;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* LEFT SECTION */
        .left-section {
            flex: 1;
            /* background: linear-gradient(135deg, #c9a030 0%, #a67d1a 100%); */
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .left-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--white);
            font-size: 20px;
        }

        .logo-text {
            font-size: 30px;
            color: var(--white);
            letter-spacing: 2px;
            font-weight: 900;
        }

        .main_span {
            color: #f9b707;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 500px;
        }

        .hero-title {
            font-size: 35px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 18px;
            color: #d4d4d4;
            margin-bottom: 60px;
            line-height: 1.6;
            font-weight: 500;
        }

        .features-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 17px;
            color: #f9b707;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .feature-content p {
            font-size: 14px;
            color: #d4d4d4;
        }

        /* RIGHT SECTION */
        .right-section {
            flex: 1;
            background-color: var(--white);
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .top-right-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 14px;
        }

        .top-right-link span {
            color: #a9a2a2;
            font-size: 18px;
            font-weight: 500;
        }

        .create-account-btn {
            padding: 12px 28px;
            border: 2px solid var(--gold-primary);
            background-color: transparent;
            color: var(--gold-primary);
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .create-account-btn:hover {
            background-color: var(--gold-primary);
            color: var(--white);
        }

        .login-form-wrapper {
            width: 100%;
            max-width: 450px;
            background: #fff;
            box-shadow: 0px 0px 10px #aba5a5;
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #fff;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 32px;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .form-header p {
            font-size: 17px;
            color: #bdb9b9;
            font-weight: 500;
        }

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

        .form-label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .input-wrapper {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--light-gray);
            padding: 0 15px;
            transition: all 0.3s ease;
        }

        .input-wrapper:focus-within {
            border-color: var(--gold-primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(201, 160, 48, 0.1);
        }

        .input-icon {
            font-size: 18px;
            color: var(--text-light);
            margin-right: 10px;
        }

        .input-wrapper select {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-dark);
            outline: none;
        }

        .input-wrapper input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-dark);
            outline: none;
        }

        .input-wrapper input::placeholder {
            color: #999;
        }

        .toggle-password {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: var(--text-light);
            padding: 0;
        }

        .checkbox-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .remember-me input[type="checkbox"] {
            cursor: pointer;
            width: 15px;
            height: 15px;
            accent-color: var(--gold-primary);
        }

        .remember-me label {
            cursor: pointer;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 17px;
        }

        .Remember_span {
            font-size: 15px;
            font-weight: 500;
        }

        .checkbox_A {
            color: #0099ff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
            font-weight: 500;
        }

        .checkbox_A:hover {
            color: var(--gold-primary);
        }

        .sign-in-btn {
            width: 100%;
            padding: 14px;
            background-color: #f9b707;
            color: var(--text-dark);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sign-in-btn:hover {
            background-color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(201, 160, 48, 0.3);
        }

        .sign-up-link {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-light);
        }

        .sign-up-link a {
            color: #0099ff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .sign-up-link a:hover {
            color: var(--gold-primary);
        }

        .footer {
            position: absolute;
            bottom: 30px;
            left: 40px;
            right: 40px;
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 12px;
            color: var(--text-light);
            flex-wrap: wrap;
        }

        .footer a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--gold-primary);
        }

        .forgot-password {
            color: #b2b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
            font-weight: 500;
        }

        .forgot-password:hover {
            color: var(--gold-primary);
        }

        .sign-up-link {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-light);
        }

        .sign-up-link a {
            color: #0099ff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .sign-up-link a:hover {
            color: var(--gold-primary);
        }

        .social-section {
            text-align: center;
            margin-top: 20px;
        }

        .social-text {
            font-size: 14px;
            color: #999;
            margin-bottom: 15px;
        }

        .social-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid #e8e6e2;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
            color: #2c2c2c;
            text-decoration: none;
        }

        .social-btn:hover {
            border-color: #c9a461;
            background: #f9f7f5;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                min-height: auto;
            }

            .left-section {
                display: none;
            }

            .hero-title {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 14px;
                margin-bottom: 40px;
            }

            .feature-item {
                margin-bottom: 25px;
            }

            .right-section {
                padding: 0px;
                min-height: auto;
                justify-content: flex-start;
                padding-top: 30px !important;
                padding-bottom: 30px !important;
            }

            .top-right-link {
                position: static;
                justify-content: center;
                margin-bottom: 40px;
                flex-direction: column;
                align-items: center;
            }

            .login-form-wrapper {
                width: 100%;
            }

            .form-header h1 {
                font-size: 24px;
            }

            .footer {
                position: static;
                flex-direction: column;
                gap: 15px;
                text-align: center;
                margin-top: 30px;
            }
        }

        @media (max-width: 480px) {
            .container {
                min-height: 100vh;
            }

            .left-section {
                padding: 30px 20px;
                min-height: 400px;
            }

            .logo-text {
                font-size: 20px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-description {
                font-size: 13px;
            }

            .feature-content h3 {
                font-size: 14px;
            }

            .feature-content p {
                font-size: 12px;
            }

            .right-section {
                padding: 30px 20px 80px;
            }

            .top-right-link {
                gap: 10px;
            }

            .create-account-btn {
                padding: 10px 20px;
                font-size: 12px;
            }

            .form-header h1 {
                font-size: 20px;
            }

            .form-header p {
                font-size: 14px;
            }

            .checkbox-wrapper {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .footer {
                font-size: 11px;
            }
        }

        .logo-text img {
            width: 150px;
        }

        .form-check-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .field-no {
            display: flex;
            align-items: center;
            width: 30px;

        }