
    /* RESET & GLOBAL - CLEAN WHITE BACKGROUND */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      height: 100vh;
      background: #ffffff;
      overflow: hidden;
    }

    /* Split screen container */
    .login-container {
      display: flex;
      width: 100%;
      height: 100%;
    }

    /* LEFT SIDE: image with BLACK overlay */
    .hero-section {
      flex: 1.2;
      position: relative;
      background: url('https://tse4.mm.bing.net/th/id/OIP.kwkC8pM2tj38ffBKcBWjrAHaEu?w=1332&h=850&rs=1&pid=ImgDetMain&o=7&rm=3') center/cover no-repeat;
      overflow: hidden;
    }

    /* Solid black overlay for clean contrast */
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0000004e;
      z-index: 1;
    }

    /* Content on left side: mechanic/vehicle service text */
    .hero-content {
      position: absolute;
      bottom: 12%;
      left: 8%;
      right: 8%;
      z-index: 2;
      color: white;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      animation: fadeUp 0.7s ease-out;
    }

    .hero-content h2 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
      line-height: 1.2;
      color: white;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .hero-content p {
      font-size: 1.15rem;
      opacity: 0.94;
      max-width: 80%;
      line-height: 1.55;
      font-weight: 500;
      font-family: 'Inter', system-ui, sans-serif;
    }

    .hero-decoration {
      margin-top: 2.2rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-decoration .feature-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.4px;
      color: white;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(10px);
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: all 0.2s ease;
      font-family: 'Inter', system-ui, sans-serif;
    }

    .hero-decoration .feature-chip:hover {
      background: rgba(79, 70, 229, 0.65);
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-decoration .feature-chip svg {
      width: 1.1rem;
      height: 1.1rem;
      flex-shrink: 0;
      fill: currentColor;
    }

    /* RIGHT SIDE: pure white background with transparent card */
    .login-side {
      flex: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      position: relative;
    }

    /* TRANSPARENT CARD - no border, subtle shadow only */
    .login-box {
      width: 100%;
      max-width: 500px;
      padding: 2.5rem 2.5rem 3rem 2.5rem;
      margin: 1.8rem;
      background: transparent;
      border-radius: 0;
      transition: all 0.2s ease;
      box-shadow: none;
      backdrop-filter: none;
    }

    /* Logo area - INCREASED SIZE */
    .login-logo {
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .logo-image {
      width: 110px;
      height: 110px;
      object-fit: contain;
      margin-bottom: 1rem;
      filter: drop-shadow(0 10px 25px rgba(79, 70, 229, 0.12));
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .logo-image:hover {
      transform: scale(1.05);
    }

    .login-logo h1 {
      font-size: 2.4rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.02em;
      margin-top: 0.5rem;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .login-logo p {
      color: #475569;
      font-size: 1rem;
      font-weight: 500;
      margin-top: 0.5rem;
      font-family: 'Inter', system-ui, sans-serif;
      letter-spacing: 0.2px;
    }

    /* Form styling - modern, clean */
    .input-group {
      margin-bottom: 1.8rem;
    }

    .input-group label {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #334155;
      margin-bottom: 0.7rem;
      font-family: 'Inter', system-ui, sans-serif;
    }

    .label-icon {
      display: inline-flex;
      width: 1.1rem;
      height: 1.1rem;
      color: #4f46e5;
      flex-shrink: 0;
    }

    .label-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
    }

    .input-group input {
      width: 100%;
      padding: 1rem 1.2rem;
      font-size: 1rem;
      border: none;
      border-bottom: 2px solid #e2e8f0;
      border-radius: 0;
      background: transparent;
      transition: all 0.25s ease;
      outline: none;
      font-family: 'Inter', system-ui, sans-serif;
      color: #0f172a;
      font-weight: 500;
    }

    .input-group input:focus {
      border-bottom-color: #4f46e5;
      background: transparent;
      box-shadow: none;
    }

    .input-group input::placeholder {
      color: #94a3b8;
      font-weight: 400;
    }

    /* BUTTON: violet + dark blue gradient - attractive & bold */
    .login-btn {
      width: 100%;
      padding: 1rem 1.2rem;
      background: linear-gradient(112deg, hsl(245, 100%, 20%) 0%, #6366f1 100%);
      border: none;
      color: white;
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
      font-family: 'Inter', system-ui, sans-serif;
      letter-spacing: 0.5px;
      box-shadow: 0 12px 28px -12px rgba(79, 70, 229, 0.45);
      position: relative;
      overflow: hidden;
    }

    .login-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }

    .login-btn:hover::before {
      left: 100%;
    }

    .login-btn:hover {
      background: linear-gradient(112deg, #3730a3 0%, #818cf8 100%);
      transform: translateY(-2px);
      box-shadow: 0 18px 32px -14px rgba(79, 70, 229, 0.55);
    }

    .login-btn:active {
      transform: translateY(1px);
    }

    .error-msg {
      text-align: center;
      margin-top: 1.3rem;
      font-size: 0.85rem;
      color: #dc2626;
      font-weight: 600;
      min-height: 2rem;
      background: #ffffff14;
      padding: 0.5rem 0.9rem;
      border-radius: 60px;
      font-family: 'Inter', system-ui, sans-serif;
    }

    .demo-hint {
      text-align: center;
      margin-top: 1.8rem;
      font-size: 0.8rem;
      color: #64748b;
      font-weight: 500;
      background: #f8fafc;
      padding: 0.75rem 1rem;
      border-radius: 60px;
      display: inline-flex;
      justify-content: center;
      width: 100%;
      gap: 0.5rem;
      font-family: 'Inter', system-ui, sans-serif;
      backdrop-filter: blur(4px);
    }

    /* Animation */
    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(35px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive breakpoints */
    @media (max-width: 1100px) {
      .hero-content h2 {
        font-size: 2.5rem;
      }
      .hero-content p {
        font-size: 1rem;
        max-width: 90%;
      }
      .logo-image {
        width: 95px;
        height: 95px;
      }
    }

    @media (max-width: 900px) {
      .hero-content h2 {
        font-size: 2rem;
      }
      .hero-content p {
        font-size: 0.95rem;
        max-width: 95%;
      }
      .login-box {
        padding: 1.8rem;
      }
      .logo-image {
        width: 85px;
        height: 85px;
      }
      .login-logo h1 {
        font-size: 2rem;
      }
    }

    @media (max-width: 780px) {
      .login-container {
        flex-direction: column;
      }
      .hero-section {
        flex: 0.7;
        min-height: 280px;
      }
      .hero-content {
        bottom: 8%;
        left: 6%;
        right: 6%;
      }
      .hero-content h2 {
        font-size: 1.6rem;
      }
      .hero-content p {
        font-size: 0.85rem;
        max-width: 100%;
      }
      .hero-decoration {
        margin-top: 1.2rem;
        gap: 0.7rem;
      }
      .hero-decoration .feature-chip {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
      }
      .login-side {
        flex: 1;
        align-items: flex-start;
        padding-top: 2rem;
      }
      body {
        overflow: auto;
      }
      .login-box {
        margin: 1rem;
        padding: 1.5rem;
        max-width: 450px;
      }
      .logo-image {
        width: 75px;
        height: 75px;
      }
      .login-logo h1 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero-section {
        min-height: 240px;
      }
      .hero-content h2 {
        font-size: 1.3rem;
      }
      .hero-content p {
        font-size: 0.75rem;
      }
      .hero-decoration .feature-chip {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
      }
      .login-box {
        padding: 1.2rem;
      }
      .logo-image {
        width: 65px;
        height: 65px;
      }
      .login-logo h1 {
        font-size: 1.5rem;
      }
      .input-group input {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
      }
      .login-btn {
        padding: 0.85rem;
        font-size: 0.95rem;
      }
    }

    /* Smooth scrolling and better touch */
    @media (hover: none) and (pointer: coarse) {
      .login-btn:hover {
        transform: none;
      }
      .hero-decoration .feature-chip:hover {
        transform: none;
      }
      .input-group input {
        font-size: 16px;
      }
    }
