    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Segoe UI', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f3f4f6;
    }

    .login-wrapper {
      display: flex;
      width: 900px;
      max-width: 95vw;
      min-height: 520px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    /* ── Left panel ── */
    .left-panel {
      flex: 1;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
      /*background: white;*/
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    /* Decorative circles */
    .left-panel::before {
      content: '';
      position: absolute;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      top: -100px; left: -100px;
    }
    .left-panel::after {
      content: '';
      position: absolute;
      width: 250px; height: 250px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      bottom: -80px; right: -80px;
    }

    .left-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .left-content img {
      width: 500px;           /* swap with your own image */
      
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
    }

    .left-content h2 {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .left-content p {
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ── Right panel ── */
    .right-panel {
      flex: 1;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 2.5rem;
    }

    .right-panel h1 {
      font-size: 26px;
      font-weight: 600;
      color: #1e1b4b;
      margin-bottom: 2rem;
    }

    .form-group {
      width: 100%;
      margin-bottom: 1rem;
    }

    .form-group input {
      width: 100%;
      padding: 14px 22px;
      border: 1.5px solid #e0e0e0;
      border-radius: 50px;
      font-size: 15px;
      background: #f9f9fc;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus {
      border-color: #f0f0f5;
      background: #fff;
    }

    .login-btn {
      width: 100%;
      padding: 14px;
      background: #4f46e5;;
      color: #fff;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: background 0.2s, transform 0.1s;
    }

    .login-btn:hover { background: #4f46e5; }
    .login-btn:active { transform: scale(0.98); }

    .forgot {
      margin-top: 1.2rem;
      font-size: 13px;
      color: #888;
      text-align: center;
    }
    .forgot a { color: #6366f1; text-decoration: none; }

    /* Responsive */
    @media (max-width: 640px) {
      .left-panel { display: none; }
    }
