    /* GLOBAL RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    body {
      height: 100vh;
      overflow: hidden;
      background: #f8f9fb;
    }

    /* LAYOUT */
    .container {
      display: flex;
      height: 100%;
    }

    /* LEFT SIDE */
    .left {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: #fff; */
      background: linear-gradient(135deg, #f3f6fb 0%, #e6eefc 100%);
      padding: 2rem;
    }

    .form-wrapper {
      width: 100%;
      max-width: 400px;
    }

    /* BRAND */
    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 2rem;
      width: 100%;
      justify-content: center;
    }

    .logo img {
      width: 150px;
      height: 50px;
      height: auto;
    }

    .brand-name {
      font-size: 1.4rem;
      font-weight: 700;
      color: #030213;
      /* Black */
    }

    /* CARD */
    .card {
      border: none !important;
      border-radius: 1rem;
      padding: 2.2rem 2rem;
      box-shadow: none !important;
      background: #fff;
      min-height: 400px;
    }

    .card h2 {
      font-size: 1.5rem;
      color: #030213;
      margin-bottom: 0.4rem;
    }

    .card .desc {
      color: #6b7280;
      margin-bottom: 1.8rem;
      font-size: 0.95rem;
    }

    /* FORM ELEMENTS */
    label {
      font-size: 0.9rem;
      color: #374151;
      display: block;
      margin-bottom: 0.3rem;
    }

    .input-wrapper {
      position: relative;
      margin-bottom: 1.3rem;
    }

    .input-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
    }

    input {
      width: 100%;
      padding: 0.8rem 2.5rem 0.8rem 2.5rem;
      border-radius: 0.5rem;
      border: 1px solid #d1d5db;
      outline: none;
      font-size: 0.95rem;
      background: #fff;
    }

    .toggle-password {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      cursor: pointer;
      color: #888;
      z-index: 10;
      transition: color 0.2s;
    }

    .toggle-password:hover {
      color: #2E2E72;
    }

    input:focus {
      border-color: #42426192;
      /* box-shadow: 0 0 0 3px #292962;; */
    }

    /* REMEMBER ME + FORGOT PASSWORD */
    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 1rem 0 1.5rem;
      font-size: 0.9rem;
      color: #374151;
    }

    .options label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
    }

    .options input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #3FA055;
      cursor: pointer;
    }

    .options a {
      color: #3FA055;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .options a:hover {
      color: #030213;
    }

    /* BUTTON */
    .btn {
      background: #2E2E72;
      color: white;
      border: none;
      width: 100%;
      padding: 0.9rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn:hover {
      background: #1a1a40;
      color: #fff;
    }

    /* FOOTER */
    footer {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: #9ca3af;
    }

    .footer-links {
      margin-top: 0.5rem;
    }

    .footer-links a {
      color: #6b7280;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #030213;
    }

    /* RIGHT SIDE */
    .right {
      flex: 1;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 3rem;
    }

    /* BACKGROUND IMAGE */
    .background-image {
      position: absolute;
      inset: 0;
      animation: bgChange 15s infinite;
      z-index: 0;
    }

    @keyframes bgChange {
      0% {
        background: url('otdms/assets/img/fruitbkg1.jpg') center/cover no-repeat;
      }

      50% {
        background: url('otdms/assets/img/fruitbkg2.jpg') center/cover no-repeat;
      }

      100% {
        background: url('otdms/assets/img/fruitbkg3.jpg') center/cover no-repeat;
      }
    }

    /* OVERLAY */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    /* TEXT OVERLAY */
    .right .text {
      position: relative;
      z-index: 2;
      max-width: 520px;
    }

    .right h1,
    .right h2 {
      color: #FFD200;
      margin-bottom: 0.8rem;
    }

    .right p {
      font-size: 1rem;
      opacity: 0.95;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .btn-live {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 24px;
      margin-top: 5rem;
      border: 1px solid rgba(255, 210, 0, 0.4);
      background: rgba(255, 210, 0, 0.1);
      border-radius: 50px;
      color: #FFD200;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }

    .btn-live:hover {
      background: rgba(255, 210, 0, 0.15);
      border-color: #FFD200;
      transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .container {
        flex-direction: column;
      }

      .right {
        display: none;
      }

      .left {
        padding: 3rem 2rem;
      }

      .form-wrapper {
        max-width: 100%;
      }
    }