/* Centered login container */
.login-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Login options (Sign In / Sign Up) */
.login-options button {
  width: 48%;
  padding: 10px;
  margin: 5px;
  border: none;
  background-color: #00a884;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-options button:hover {
  background-color: #007a63;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  padding: 10px;
  border: none;
  background-color: #00a884;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #007a63;
}

/* Social login buttons - Stacked vertically */
.social-login {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  transition: background 0.3s;
}


button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  opacity: 0.7;
}

#back-to-login, #resend-email-otp-btn, #resend-phone-otp-btn {
  margin-top: 10px;
}

/* Hidden class for toggling sign-in / sign-up sections */
.hidden {
  display: none !important;
}


