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

 :root {
     --gold-primary: linear-gradient(180deg, #ab6a01 0%, #fde66b 50%, #9c5801 100%);
     --gold-dark: #a67d1a;
     --light-gray: #f5f5f5;
     --text-dark: #333333;
     --text-light: #666666;
     --border-color: #e0e0e0;
     --white: #ffffff;
     --line: linear-gradient(180deg, #ab6a01 0%, #fde66b 50%, #9c5801 100%);

 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
         'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
     background: 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, #c9a030b0 0%, #a67d1aba 100%);
     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;
 }

 .left-section::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://otxworld.com/Assets/Portal/images/login_bg.jpg') center/cover no-repeat;
     z-index: -1;
 }


 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
     position: relative;
     z-index: 1;
     background: #000;
     border-radius: 7px;
 }

 .logo img {
     width: 200px;
 }

 .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;
 }

 .logo-text span {
     color: #ad6a16;
 }

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

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

 .hero-description {
     font-size: 18px;
     color: #fff;
     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: #fff;
     margin-bottom: 5px;
     font-weight: 600;
 }

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

 /* RIGHT SECTION */
 .right-section {
     flex: 1;
     background: #000;
     padding: 40px;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     justify-content: center;
 }

 .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 #f19c02;
     background: transparent;
     color: #f19c02;
     border-radius: 10px;
     cursor: pointer;
     font-weight: 600;
     transition: all 0.3s ease;
     font-size: 14px;
     text-decoration: none;
 }

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

 .login-form-wrapper {
     width: 100%;
     max-width: 450px;
     background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
     box-shadow: 0px 0px 10px #aba5a5;
     border-radius: 10px;
     padding: 30px;
     border: 1px solid #f19c02;
 }

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

 .form-header h1 {
     font-size: 32px;
     color: #f19c02;
     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: #f19c02;
     margin-bottom: 8px;
 }

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

 .input-wrapper:focus-within {
     border-color: var(--gold-primary);
     background: 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 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: 17px;
     font-weight: 600;
     color: #f19c02;
 }

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

 .forgot-password:hover {
     color: #f19c02;
 }

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

 .sign-in-btn:hover {
     background: #f19d01;
     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: #fff;
 }

 .sign-up-link a {
     color: #f19c02;
     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: 10px;
     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);
 }

 /* 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;
     }
 }