   /* --- Your existing CSS --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    body {
      background-color:white;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    .auth-container {
      max-width: 1200px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .auth-card {
      background-color: #ffffff;
      border-radius: 24px;
      display: flex;
      width: 100%;
      max-width: 980px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      flex-wrap: wrap;
    }

    .auth-side {
      background: linear-gradient(135deg,  rgb(0, 0, 0), #75ffa0);
      color: white;
      flex: 1;
      min-width: 320px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auth-side-content {
      text-align: left;
    }

    .auth-side-content h1 {
      font-size: 28px;
      line-height: 1.4;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .auth-side-content h1 span {
      text-decoration: underline;
    }

    .auth-side-content p {
      font-size: 14px;
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .auth-side-content img {
      max-width: 100%;
      height: auto;
      max-height: 250px;
      border-radius: 10px;
    }

    .auth-form-section {
      flex: 1;
      min-width: 320px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auth-form {
      width: 100%;
      max-width: 320px;
    }

    .auth-logo {
      font-size: 20px;
      margin-bottom: 20px;
      color: #111827;
    }

    .auth-form h2 {
      font-size: 24px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 8px;
    }

    .auth-subtext {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 24px;
    }

    .auth-form form input {
      width: 100%;
      padding: 12px 14px;
      margin-bottom: 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
    }

    .auth-form button {
      width: 100%;
      padding: 12px;
      background-color: #75ffa0;
      border: none;
      color: black;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }


    .forgot-pass {
      text-align: right;
      margin-bottom: 20px;
    }

    .forgot-pass a {
      font-size: 12px;
      color: #6b7280;
      text-decoration: none;
      cursor: pointer;
    }

    .auth-link-text {
      font-size: 13px;
      text-align: center;
      margin-top: 20px;
      color: #6b7280;
    }

    .auth-link-text a {
      color: black;
      font-weight: bolder;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .auth-card {
        flex-direction: column;
        border-radius: 16px;
      }

      .auth-side,
      .auth-form-section {
        padding: 30px 20px;
      }

      .auth-side-content h1 {
        font-size: 22px;
      }

      .auth-form {
        max-width: 100%;
      }
    }

    /* --- Modal CSS --- */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000; /* On top */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto; /* Enable scroll if needed */
      background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px 30px;
      border-radius: 12px;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      font-family: 'Segoe UI', sans-serif;
    }

    .close-btn {
      background-color: #fff;
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
    }
/* 
    .close-btn:hover {
      color: #f97316;
    } */

    #forgotPasswordForm input {
      width: 100%;
      padding: 12px 14px;
      margin-bottom: 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
    }

    #forgotPasswordForm button {
      width: 100%;
      padding: 12px;
      background-color: #51dd7d;
      border: none;
      color: white;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    #forgotPasswordForm button:hover {
      background-color: black;
      color: white;
    }