 * {
      box-sizing: border-box;
      font-family: 'Plus Jakarta Sans', sans-serif !important;
      margin: 0;
      padding: 0;
    }

    body, html {
      height: 100%;
    }

    body {
      display: flex;
      background: #f5f6f8;
    }

    /* LEFT SLIDER */
    .left {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .slider-images {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .slider-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
    }

    .slider-images img.active {
      opacity: 1;
    }

    /* Overlay Logo */
    .slider-logo {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 10;
    }

    .slider-logo img {
      max-width: 120px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* RIGHT LOGIN */
    .right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fff;
      padding: 20px;
    }

    .login-box {
      width: 100%;
      max-width: 360px;
      text-align: center;
    }

    .login-box h2 {
      margin-bottom: 8px;
    }

    .login-box p {
      color: #666;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .login-box input {
      width: 100%;
      padding: 12px;
      margin-bottom: 14px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      margin-bottom: 20px;
      flex-wrap: nowrap;
    }

    .remember {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      white-space: nowrap;
    }

    .remember input {
      margin: 0;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }

    .login-box button {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 6px;
      background: #1f2a30;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
    }

    .login-box button:hover {
      opacity: 0.9;
    }

    /* LOGIN LOGO */
    .logo {
      text-align: center;
    }

    .logo img {
      max-width: 360px;
      height: auto;
      object-fit: contain;
      display: inline-block;
    }

    @media (max-width: 768px) {
      body {
        flex-direction: column;
      }
      .left {
        display: none;
      }
      .right {
        flex: 1;
      }
    }

    /* Mobile-only background */
    @media only screen and (max-width: 768px) {
    .right {
        background: transparent; /* allow mobile background to show */
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    body {
        
        min-height: 100vh;
        background-image: url('../images/background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
    }
