  :root {
      --accent: #f78e44;
      --accent-2: #ffd56b;
    }

    body {
      min-height: 100vh;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('/images/background.png') no-repeat center center;
      background-size: cover;
    }

    .auth-card {
      width: 100%;
      max-width: 900px;
      min-height: 600px;
      border: none;
      border-radius: 1.25rem;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
      overflow: hidden;
    }

    .left-panel {
      background: url("/images/login.png") no-repeat center center;
      min-height: 600px;
      opacity: 0.7;
      background-size: cover;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      text-align: center;
    }

    .left-panel h2 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .form-wrap {
      padding: 2rem;
    }

    .form-control {
      border-radius: .9rem;
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), #ffa439);
      border: 0;
      border-radius: .9rem;
      box-shadow: 0 10px 20px rgba(255, 122, 24, .35);
    }

    .btn-accent:hover {
      filter: brightness(.98);
    }

    .divider {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: .75rem;
      color: #8b8b8b;
      font-size: .9rem;
      margin: 1rem 0;
    }

    .divider::before,
    .divider::after {
      content: "";
      height: 1px;
      background: rgba(0, 0, 0, .1);
    }

    .logo-img {
      width: 12rem;
      height: auto;
    }

    .round-img {
      width: 50px;
      height: 50px;
      border-radius: 100%;
    }

    /* 📱 Mobile & Tablet Responsiveness */
    @media (max-width: 767px) {
      .left-panel {
        display: none; /* hide left image panel on phones */
      }

      .auth-card {
        max-width: 95%;
        min-height: auto;
      }

      .form-wrap {
        padding: 1.5rem;
      }

      .logo-img {
        width: 9rem;
      }

      .round-img {
        width: 40px;
        height: 40px;
      }
    }

    /* Tablets (iPad landscape/portrait) */
    @media (min-width: 768px) and (max-width: 991px) {
      .left-panel {
        min-height: 100%;
      }

      .auth-card {
        max-width: 95%;
      }
    }