* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background: #f0f2f5;
  padding: 1rem;
}

#login .login-container {
  background: white;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#login h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #333;
}

#login label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #444;
  font-size: 0.95rem;
}

#login input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#login .password-wrapper {
  position: relative;
}

#login .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 1rem;
}

#login button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem;
  background: #2d9cdb;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#login button[type="submit"]:hover {
  background: #238acb;
}

#login .links {
  text-align: center;
  margin-top: 1rem;
}

#login .links a {
  margin: 0 0.5rem;
  font-size: 0.9rem;
  color: #2d9cdb;
  text-decoration: none;
}

#login .links a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  #login .login-container {
    padding: 1.2rem;
    border-radius: 8px;
  }

  #login h2 {
    font-size: 1.4rem;
  }

  #login label {
    font-size: 0.9rem;
  }

  #login input {
    padding: 0.5rem;
    font-size: 0.95rem;
  }

  #login button[type="submit"] {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  #login .toggle-password {
    font-size: 0.9rem;
  }

  #login .links a {
    font-size: 0.85rem;
  }
}
/* ----- ----- ----- ----- ----- Login End Hear ----- ----- ----- ----- -----  */
#reset {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  .reset-container {
    background: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  .hidden {
    display: none;
  }

  h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
  }

  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #444;
  }

  input {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }

  button {
    margin-top: 1rem;
    padding: 0.7rem;
    width: 100%;
    background: #2d9cdb;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }

  button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .email-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.3rem;
    flex-wrap: wrap;
  }

  .email-row input {
    flex: 1;
    min-width: 200px;
  }

  .email-row button {
    white-space: nowrap;
  }

  .otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    gap: 0.4rem;
  }

  .otp-inputs input {
    width: 40px;
    padding: 0.6rem;
    text-align: center;
    font-size: 1.2rem;
  }

  #otpMsg {
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bold;
  }
  .links {
    text-align: center;
    margin-top: 1.5rem;
  }

  .links a {
    color: #2d9cdb;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
  }

  .links a:hover {
    text-decoration: underline;
  }

  @media (max-width: 425px) {
    .email-row {
      flex-direction: column;
      align-items: stretch;
    }

    .email-row input,
    .email-row button {
      width: 100%;
    }
  }
}
/* ----- ----- ----- ----- ----- Reset Password End Hear ----- ----- ----- ----- -----  */

#register {
  min-height: 100vh;
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.register-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  min-width: 280px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.register-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #333;
}

.register-container label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #444;
  font-size: 0.95rem;
}

.register-container input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  font-size: 1rem;
  cursor: pointer;
}

.register-container button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem;
  background: #2d9cdb;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.register-container button[type="submit"]:hover {
  background: #238acb;
}

.links {
  text-align: center;
  margin-top: 1rem;
}

.links a {
  font-size: 0.9rem;
  color: #2d9cdb;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}
.hidden {
  display: none;
}
.address-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.address-actions button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease;
}

#skipAddressBtn {
  background-color: #f1f1f1;
  color: #333;
}

#skipAddressBtn:hover {
  background-color: #ddd;
}

#remindLaterBtn {
  background-color: #e0f7fa;
  color: #00796b;
}

#remindLaterBtn:hover {
  background-color: #b2ebf2;
}

@media (max-width: 480px) {
  .register-container {
    padding: 1.2rem;
  }

  .register-container h2 {
    font-size: 1.3rem;
  }

  .register-container label {
    font-size: 0.9rem;
  }

  .register-container input {
    font-size: 0.95rem;
  }

  .toggle-password {
    font-size: 0.9rem;
  }

  .register-container button[type="submit"] {
    font-size: 0.95rem;
  }

  .links a {
    font-size: 0.85rem;
  }
}
