
        .login-form {
            max-width: 524px    ;
            width: 100%;
        }
        .login-form-container {
            width: 100%;
            max-width: 552px;
            padding: 48px 40px;
            min-width: 623px;
            justify-content: center;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 28px -6px rgba(24, 39, 75, 0.02), 0 18px 88px -4px rgba(24, 39, 75, 0.04);
            margin:0 auto;
        }
        .login-form-title {
            font-size: 24px;
            font-weight: 700;
            color: #23567D;
            margin-bottom: 0;
            padding: 0 !important; 
        
           
        }

       .main-container {
        display: flex;
        padding-top: 85px;
        justify-content: space-between;
        padding-bottom: 100px;
       
       }
       .login-form-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 48px;
       }
       .login-form-title {
        font-size: 24px;
        font-weight: 700;
        color: #23567D;
    
        padding-bottom: 16px;
       }
       .login-form-description {
        font-size: 16px;
        font-weight: 400;
        color: #757575;
      
        padding-bottom: 16px;
       }

       /* Auth Input Styles */


       .auth-input {
        max-height: 44px;

        border: 1px solid #E0E0E0;
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 16px;
        color: #161616;
        text-align: right;
        direction: rtl;
        transition: all 0.3s ease;
       }

       .auth-input:focus {
        background-color: #fff;
        border-color: #19BBB7;
        box-shadow: 0 0 0 0.2rem rgba(25, 187, 183, 0.15);
        outline: none;
       }

       .auth-input::placeholder {
        color: #9E9E9E;
        font-size: 14px;
       }

       /* Password Toggle Button */
       .password-toggle-btn {
        position: absolute;
        left: 3px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
       }

       .password-toggle-btn:hover {
        opacity: 0.7;
       }

       .password-toggle-btn:focus {
        box-shadow: none;
        outline: none;
       }

       .password-toggle-icon {
        font-size: 14px !important;
        color: #9E9E9E !important;
        transition: color 0.3s ease;
       }

       .password-toggle-btn:hover .password-toggle-icon {
        color: #757575 !important;
       }

       /* Forgot Password Link */
       .auth-forgot-link {
        color: #19BBB7;
        font-size: 14px;
        font-weight: 500;
        line-height: 24px; 
        text-decoration: none;
       }

       .auth-forgot-link:hover {
        color: #19BBB7;
       }

       /* Remember Me Checkbox */
       .auth-remember {
        margin-bottom: 0;
       }

       .auth-checkbox {
        border: 1.5px solid #19BBB7;
        border-radius: 4px;
        width: 18px;
        height: 18px;
        cursor: pointer;
       }

       .auth-checkbox:checked {
        background-color: #19BBB7;
        border-color: #19BBB7;
       }

       .auth-checkbox:focus {
        box-shadow: 0 0 0 0.2rem rgba(25, 187, 183, 0.15);
       }

       .auth-checkbox-label {
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        cursor: pointer;
 
       }

       /* Submit Button */
       .auth-submit-btn {
        background-color: #23567D;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 18px;
        font-weight: 700;
        transition: all 0.3s ease;
       }

  

      

       /* Create Account Section */
       .auth-create-account {
      
        padding-top: 16px;
     
       }

       .auth-no-account {
        font-size: 18px;
        font-weight: 700;
        color: #455A64;

       }

       .auth-create-link {
        font-size: 18px;
        font-weight: 700;
        color: #19BBB7;
        text-decoration: underline;
        margin-right: 4px;
        transition: color 0.3s ease;
       }

       .auth-create-link:hover {
        color: #158f8c;
        text-decoration: underline;
       }

       /* Login Form Image */
       .login-form-image {
            width: 293px;
            height: 342px;
            flex-shrink: 0;
            border-radius: 32px;
            background: linear-gradient(270deg, #003964 0%, #23567D 65.87%, #19BBB7  100%);
            margin-top:142px;
        }
        .login-form-image-img {
            object-fit: cover;
            max-width: 376px;
            max-height: 440px;
            position: absolute;
            
            bottom: 0;
            left: 54px;
        }
       /* Responsive Design */
       @media (max-width: 1200px) {
        .main-container {
            flex-direction: column-reverse;
            gap: 40px;
            padding-top: 50px;
            padding-bottom: 60px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .login-form-image {
            display: none;
        }

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

       @media (max-width: 768px) {
       
        .login-form-title {
            font-size: 20px;
            padding-bottom: 12px;
        }

        .login-form-description {
            font-size: 14px;
            padding-bottom: 12px;
        }

        .login-form-toggle {
            padding-bottom: 32px;
        }

        .auth-input {
            font-size: 14px;
            padding: 10px 14px;
        }

        .auth-input::placeholder {
            font-size: 13px;
        }

        .auth-submit-btn {
            font-size: 16px;
            padding: 10px 16px;
        }

        .auth-no-account {
            font-size: 16px;
        }

        .auth-create-link {
            font-size: 16px;
        }


        .auth-forgot-link {
            order: -1;
            align-self: flex-end;
        }
       }

       @media (max-width: 480px) {

        .login-form-title {
            font-size: 18px;
            padding-bottom: 10px;
        }

        .login-form-description {
            font-size: 13px;
            padding-bottom: 10px;
        }

        .login-form-toggle {
            padding-bottom: 24px;
        }

        .auth-input {
            font-size: 13px;
            padding: 9px 12px;
        }

        .auth-input::placeholder {
            font-size: 12px;
        }

        .auth-submit-btn {
            font-size: 15px;
            padding: 9px 14px;
        }

        .auth-no-account {
            font-size: 14px;
        }

        .auth-create-link {
            font-size: 14px;
        }

        .auth-forgot-link {
            font-size: 13px;
        }

        .auth-checkbox-label {
            font-size: 13px;
        }
       }

       /* Mobile: Hide hero section and clean form */
       @media (max-width: 768px) {
        .hero-section-wrapper .info-section {
            display: none;
        }

        .hero-section-wrapper .hero-bg-image {
            display: none;
        }

        .hero-section-wrapper .info-section-content {
            padding-top: 24px;
            padding-bottom: 24px;
        }

        .login-form-container {
            min-width: unset;
            max-width: 100%;
            padding: 24px 20px;
        }
        .login-form-container-mobile {
            box-shadow: 0 4px 18px -2px rgba(24, 39, 75, 0.10);
            border-radius: 14px;
            background-color: #fff;
            border: 1px solid #E0E0E0;
          
            padding: 16px 20px;
        }
       }

       @media (max-width: 480px) {
        .hero-section-wrapper .info-section-content {
            padding-top: 16px;
            padding-bottom: 16px;
        }

        .login-form-container {
            padding: 16px 16px;
        }
       }
