   * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;

    }
input, select, textarea {
  font-size: 16px;   /* Prevents zoom on focus */
}
.main {
      flex: 1; /* Pushes footer down */
    }

    .footer {
      text-align: center;
      margin-bottom: 23px;
      margin-top: 38px;
      color: #575b61;
      font-weight: 400;
      font-size: 10px;
      line-height: 14px;
    }

    header {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      padding: 0 20px;
      background-color: #17181e;
      height: 50px;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
    }

    .header-left,
    .header-middle,
    .header-right {
      display: flex;
      align-items: center;
    }

    .header-left img,
    .header-middle img {
      height: 20px;
      margin-left: 10px;
    }

   .header-middle {
  display: flex;
  align-items: center;
  gap: 15px; /* space between dropdowns */
  max-width: fit-content;
  flex-wrap: nowrap;
}

.dropdown {
  display: flex;
  align-items: center;
  color: white;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}
.header-middle img {
  height: 20px;
  margin-left: 10px;
}


    .dropdown:hover {
      color: #ffb11a;
    }

    .dropdown svg {
      margin-left: 5px;
      transition: transform 0.3s ease, fill 0.3s ease;
      transform: rotate(0deg);
      fill: currentColor;
    }

    .dropdown:hover svg {
      transform: rotate(180deg);
      color: #ffb11a;
    }

    .header-right .search-icon,
    .header-right .nav-icon {
      color: white;
      font-size: 14px;
      margin-left: 10px;
      cursor: pointer;
    }



      main {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
      padding-top: 60px;
    }

    .login-container {
      background-color: #ffffff;
      border: 1px solid #eff2f5;
      border-radius: 10px;
      padding: 20px 25px;
      width: 90%;
      max-width: 378px;
      
    }

    .login-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .login-header h4 {
      margin: 0;
      font-size: 16px;
    }

    .login-header a {
      font-size: 13px;
      text-decoration: none;
      color: #007bff;
    }

  .tabs-wrapper {
  width: 40%;
  display: flex;
  justify-content: flex-start;
}

.tabs {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


    .tab {
      flex: 1;
      text-align: center;
      cursor: pointer;
      font-size: 13px;

    }
    .tab span{
        display: inline-block;
        padding: 5px;
        border-bottom: 2px solid transparent;
      transition: all 0.3s;
    }

    .tab.active span {
      color: #f7a600;
      font-weight: bold;
      border-color: #f7a600;
    }

    .tab.disabled {
      color: gray;
      cursor: not-allowed;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    input {
      padding: 10px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      width: 100%;
    }

    button {
      padding: 12px;
      font-size: 15px;
      background-color: #000;
      color: white;
      border: none;
      border-radius: 5px;
      width: 100%;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #222;
    }

    hr {
      margin: 10px 0;
      border: none;
      border-top: 1px solid #eee;
    }
    form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-input {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
}

.input-text {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.password-input {
  position: relative;
}

.password-icon {
  margin-left: 10px;
  cursor: pointer;
  color: #666;
}

.error-text {
  color: red;
  font-size: 12px;
  line-height: 1.4;
}

.forgot-password {
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
}

.forgot-password a {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.btn-login {
  width: 100%;
  padding: 18px;
  background-color: #f7a600;
  color: black;
  border: none;
  border-radius: 7px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 799;
  
}

.btn-login:hover {
  background-color: #fcc961;
}
.password-icon {
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
 .otp-modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      color: #f7a600;
    }

    .otp-content {
      background: white;
      padding: 40px 30px;


      border-radius: 8px;
      width: 280px;
      text-align: center;
    }

    .otp-content input {
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 15px;
      border-radius: 5px;
      border: 1px gray solid;
      background-color: #f9f9f9;
      border: 0;
      outline: 0;

    }

    .otp-content button {
      background: #f7a600;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      border-radius: 5px;
      cursor: pointer;
    }
    .otp-content button:hover {
  background-color: #fcc961;
}
.index_cht-spinner__WqBBC {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


 @media (max-width: 480px) {
  .header-middle {
    display: none; /* hide middle dropdowns on small screen */
  }

  .header-left img
  {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .login-container {
    width: 100%;
    padding: 15px;
  }

  
  .third-party-buttons {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }

  .dropdown {
    font-size: 14px;
  }
   main{
        margin-top: 0px;
    }
}