:root {
            --primary-blue: #27337C;
            --primary-orange: #FF8C42;
            --sky-blue: #67B1D0;
            --bg-gray: #F6F6F7;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-gray);
            margin: 0;
            padding: 0;
        }

        .main-container {
            min-height: 100vh;
            background-color: var(--bg-gray);
        }

        /* Header */
        /* Remove the old header styles and replace with: */
		.header {
            height: 42px;
            padding: 0 1rem; /* Keep only horizontal padding */
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: white;
            }
			/* For responsive behavior, add this to your media queries: */
			@media (max-width: 768px) {
				.header {
					margin-bottom: 1.5rem;
				}
				.left-panel {
					padding: 1.5rem 1rem 2rem;
				}
			}

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 35px;       /* Set your desired width */
            height: 35px;      /* Set your desired height */
            display: block;    /* Removes default inline spacing */
            margin: 0;         /* Removes any default margins */
            padding: 0;        /* Explicitly remove padding */
            border: none;      /* Remove any default borders */
            object-fit: contain; /* Ensures image scales properly */
            line-height: 0;    /* Removes phantom space under image */
            vertical-align: middle; /* Aligns properly with text */
        }

        .logo-icon::before {
            content: '';
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 6px;
            position: absolute;
        }

        .logo-text {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 20px;
        }


        .mds-text {
            color: var(--primary-blue);
            font-size: 24.07px; 
            font-family: Arial; 
            font-weight: 700; 
            word-wrap: break-word;
            width: 54px;
            height: 28px;
            line-height: 28px;
        }

        .ap-text {
            color: var(--sky-blue);
            font-size: 24.07px;
            font-family: Arial;
            font-style: italic;
            font-weight: 400;
            word-wrap: break-word;
            width: 27px;
            height: 28px;
            line-height: 28px;
        }

        .language-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #FF0000 33%, white 33%, white 66%, #FF0000 66%);
            border-radius: 2px;
        }

        /* Main Content */
        .content-wrapper {
            display: flex;
            min-height: calc(100vh - 42px);
        }

       .left-panel {
            width: 667px;
            padding: 0 10px; /* Remove all padding */
            background: white;
            display: flex;
            flex-direction: column;
            /* Remove justify-content: center to start from top */
        }

        .left-content{
            padding:20px 40px;

        }

        .right-panel {
            width: 709px;
            background-color: var(--bg-gray);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        /* Left Panel Styles */
        .main-title {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .case-text {
            color: var(--primary-orange);
        }

        .direct-access-text {
            color: var(--primary-blue);
        }

        .login-text {
            color: #333;
        }

        .subtitle {
            font-size: 16px;
            color: #666;
            margin-right:30px;
            line-height: 1.4;
            text-align: center;
        }

        .auth-tabs {
            display: flex;
            margin-bottom: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .auth-tab {
            padding: 1rem 0;
            margin-right: 3rem;
            font-size: 16px;
            color: #999;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .auth-tab.active {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            height: 50px;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0 1rem;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(39, 51, 124, 0.25);
        }

        .form-control::placeholder {
            color: #999;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .form-check {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-check-input {
            width: 18px;
            height: 18px;
            border: 2px solid var(--primary-blue);
            border-radius: 3px;
        }

        .form-check-input:checked {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }

        .forgot-password {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .btn-signin {
            width: 100%;
            height: 50px;
            background-color: var(--primary-blue);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 2rem;
            transition: background-color 0.3s ease;
        }

        .btn-signin:hover {
            background-color: #1e2a5f;
        }

        .forgot-btn-loader-hidden {
            display: none;
        }

        .cookie-notice {
            font-size: 12px;
            color: #999;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

        /* Right Panel Styles */
        .hero-image {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            position: relative;
        }

        .hero-image img {
            display: block;
            width: 100%;
            height: auto;
        }

        .hero-image video {
            display: block;
            width: 100%;
            height: auto;
            max-width: 100%;
        }


        .info-section {
            max-width: 500px;
            text-align: left;
        }

        .info-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .info-description {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 2rem;
        }

        .pagination-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: var(--primary-blue);
        }

        .main-left{
              padding:0px 44px;
        }

        /* Footer */
        .footer {
            bottom: 1rem;
            margin:0 1rem;
            color: #9E9E9E;
            font-size: 16px;
            font-family: Arial;
            font-weight: 400;
            line-height: 19.20px;
            word-wrap: break-word
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-wrapper {
                flex-direction: column;
				min-height: 100vh;
            }
            
            .left-panel,
            .right-panel {
                width: 100%;
                max-width: none;
            }
            
            .right-panel {
                min-height: 60vh;
            }
            
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 1rem;
            }

            .left-panel {
                padding: 2rem 1rem;
            }

            .main-title {
                font-size: 36px;
            }

            .info-section {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 28px;
            }
            
            .auth-tab {
                margin-right: 2rem;
            }
        }

            /* Input with icon container */
            .input-with-icon {
                position: relative;
                margin-bottom: 1.5rem; /* Match your existing form-group spacing */
            }

            /* Email icon styling */
            .input-icon {
                position: absolute;
                top: 43%;
                left: 20px;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
                fill: #666;
            }

            /* Adjust input padding to accommodate icon */
            .form-control.with-icon {
                padding-left: 48px !important;
                height: 50px;
                border: 1px solid #ddd;
                border-radius: 8px;
                font-size: 16px;
                transition: border-color 0.3s ease;
            }

            /* Focus state - matches your existing style */
            .form-control.with-icon:focus {
                border-color: var(--primary-blue);
                box-shadow: 0 0 0 0.2rem rgba(39, 51, 124, 0.25);
            }

            /* For dark mode compatibility (optional) */
            @media (prefers-color-scheme: dark) {
                .input-icon {
                    filter: brightness(0.8);
                }
            }
			
			.flag-dropdown {
            width: 68px;
            height: 42px;
        }
        .flag-dropdown .dropdown-toggle {
            padding: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center; /* Center items together */
            background-color: white !important;
            border: none !important; /* Remove border completely */
            color: #212529 !important;
            gap: 4px; /* Space between flag and arrow */
        }
        .flag-dropdown .dropdown-toggle:focus {
            box-shadow: none !important;
        }
        .flag-dropdown .dropdown-toggle::after {
            display: none !important;
        }
        .flag-img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }
        .dropdown-arrow {
            width: 12px;
            height: 7px;
            transition: transform 0.2s;
        }
        .flag-dropdown.show .dropdown-arrow {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            min-width: 68px;
            padding: 0;
            border: 1px solid #f0f0f0; /* Subtle border for dropdown only */
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            cursor: pointer;
        }
        .dropdown-item .flag-img {
            margin-right: 6px;
        }
        .dropdown-item:hover {
            background-color: #f8f9fa;
        }
        .dropdown-item.selected {
            background-color: #f0f0f0;
        }
               .dropdown-container {
            position: relative;
        }

        .dropdown-button {
            width: 100%;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.2s ease;
            outline: none;
        }

        .dropdown-button:hover {
            border-color: #9ca3af;
        }

        .dropdown-button:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        }

        .dropdown-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .flag-img {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #e5e7eb;
            flex-shrink: 0;
        }

        .country-name {
            color: #374151;
            font-weight: 500;
        }

        .placeholder-text {
            color: #6b7280;
        }

        .arrow-icon {
            transition: transform 0.2s ease;
        }

        .arrow-icon.rotated {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 4px;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            z-index: 50;
            max-height: 256px;
            overflow-y: auto;
            display: none;
        }

        .dropdown-option {
            width: 100%;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            border: none;
            background: none;
            font-size: 16px;
            text-align: left;
            border-bottom: 1px solid #f3f4f6;
        }

        .dropdown-option:last-child {
            border-bottom: none;
        }

        .dropdown-option:hover,
        .dropdown-option:focus {
            background-color: #f9fafb;
            outline: none;
        }

        .selected-display {
            margin-top: 16px;
            padding: 16px;
            background: #f9fafb;
            border-radius: 8px;
            display: none;
        }

        .selected-display h3 {
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
            margin: 0 0 8px 0;
        }

        .selected-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .selected-info .flag-img {
            width: 24px;
            height: 24px;
        }

        .selected-country-name {
            color: #1f2937;
            font-weight: 500;
        }

        .selected-country-code {
            color: #6b7280;
            font-size: 14px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 40;
            display: none;
        }
    .back-button,.backtoStep1{
        background: none;
        border: none;
        color: var(--primary-blue);
        font-size: 14px;
        width:16px;
        height:16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 1rem;
        padding: 0;
        outline: none; /* Removes focus outline */
        box-shadow: none; /* Removes any shadow */
        -webkit-appearance: none; /* Removes default iOS styling */
        -moz-appearance: none; /* Removes default Firefox styling */
    }


    .basicInfo
    {
        display:none; 
        width: 100%; 
        text-align: center; 
        color: #181D27; 
        font-size: 40px; 
        font-family: Arial; 
        font-weight: 700; 
        line-height: 48px; 
        word-wrap: break-word
    }
    
    .back-button:hover,.backtoStep1:hover
    .back-button:focus,.backtoStep1:focus {
        background: none;
        border: none;
        color: var(--primary-blue);
        text-decoration: underline;
    }

    .backbtn
    {
        position:absolute;
        top:220px;
        left:50px;
        display:none;
    }

    .backbtnStep1
    {
        position:absolute;
        top:180px;
        left:50px;
        display:none;
    }

    .subText{
        display:none; 
        width: 100%;
        text-align: center;
        color: #3F434D;
        font-size: 16px;
        font-family: Arial;
        font-weight: 400;
        line-height: 19.20px;
        word-wrap: break-word;
        margin:10px 0px;
    }
      .form-box {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      width: 350px;
      text-align: center;
    }

    .form-box h2 {
      margin-bottom: 15px;
      font-size: 20px;
      color: #333;
    }

    .form-box input {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 6px;
      border: 1px solid #ccc;
    }


/* reCAPTCHA Container Styling */
.captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 10px 0;
}

.captcha-container .g-recaptcha {
    display: inline-block;
    transform-origin: 0 0;
}

/* Optional: make it responsive on smaller screens */
@media (max-width: 500px) {
  .captcha-container .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}

@media (max-width: 380px) {
  .captcha-container .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
  }
}

    .form-box button {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
    }

    .form-box button:hover {
      background: #0056b3;
    }