header{
    margin-top: -150px;
}
/* Auth Section Styling */
.auth-section {
    padding: 50px 20px;
    margin-top: 150px;
}

.auth-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.auth-container h1 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 20px; /* Space between form groups */
    width: 100%; /* Full width by default */
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

#togglePassword {
  position: absolute;
  right: 10px; /* Position inside input on the right */
  top: 70%; /* Vertically center */
  transform: translateY(-50%); /* Adjust for exact centering */
  font-size: 18px; /* Size of the eye icon */
  cursor: pointer;
  transition: color 0.3s ease;
}



#togglePassword:focus {
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-group input[type="password"] {
    padding: 12px 40px 12px 12px; /* Slightly larger padding for touch */
    font-size: 14px; /* Smaller text on mobile */
  }

  #togglePassword {
    font-size: 16px; /* Slightly smaller icon on mobile */
    right: 8px; /* Adjust position for smaller input */
  }
}

.form-group input:focus {
    border-color: #ff3333;
    outline: none;
}

.auth-btn {
    background: linear-gradient(90deg, #ff3333, #e60000);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.5);
}

.auth-link {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.auth-link a {
    color: #ff3333;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Animation for Fade-In Effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  
  .plans-section {
    display: none;
    margin-top: 150px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container {
        padding: 20px;
    }

    .auth-container h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }
}



.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.stepper-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.stepper-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  background: #ff0000;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.stepper-buttons button[disabled] {
  background: #ccc;
  cursor: not-allowed;
}

.dontmatch{
    color: red;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0;
}

    .popup {
      display: none;
      opacity: 1;
      position: fixed;
      top: 0;
      left: 0;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.683);
      transition: opacity 0.3s ease-in-out;
      z-index: 99999;
    }
    .popup.show {
      display: flex;
      opacity: 1;
    }
    .popup h2{
        color: #fff;
    }
    .bg-white{
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .popup #closePopup{
        width: 30px;
        height: 30px;
        position: absolute;
        top: 20px;
        right: 20px;
        background: red;
        border: none;
        cursor: pointer;
        font-size: 20px;
        color: #fff;
        transition: transform 0.3s ease;
    }
    .popup .grid{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .popup .grid .flex{
        width: 100px;
        height: auto;
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 10px 0px;
        border-radius: 8px;
    }
    .popup .grid .flex img{
        width: 70px;
        height: 70px;
    }    