#auth_login {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto auto auto 10%;
  padding: 15px 10px 10px 10px;
  border-radius: 8px;
  border: 1px solid black;
  color: #2b323c;
  background-color: white;
}
#auth_login .auth_close {
  position: absolute;
  transition: all 200ms;
  color: white;
  background-color: #fd7354;
  text-decoration: none;
  text-align: center;
  height: 40px;
  line-height: 40px;
  width: 40px;
  font-size: 30px;
  font-weight: bold;
  border-radius: 0 5px 0 50%;
  cursor: pointer;
  top: 5px;
  right: 5px;
  z-index: 20;
}
#auth_login .auth_close:hover {
  color: #fd7354;
  background-color: rgba(253, 115, 84, 0.1568627451);
  border: 1px solid #fd7354;
  font-size: 40px;
  height: 50px;
  line-height: 50px;
  width: 50px;
}
#auth_login label {
  font-size: 12px;
}
#auth_login form {
  display: flex;
  flex-direction: row;
  border-radius: 15px;
  border-style: solid;
  border-width: 1px;
  padding: 2px 7px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#auth_login form span {
  margin: auto;
  padding-right: 5px;
}
#auth_login form input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: large;
}
#auth_login .auth_reset-button {
  border: 0;
  outline: 0;
  margin: auto;
  font-weight: bold;
  font-size: medium;
  background-color: rgba(88, 5, 5, 0);
  cursor: pointer;
}
#auth_login form input:-moz-placeholder-shown + button {
  opacity: 0;
  pointer-events: none;
}
#auth_login form input:placeholder-shown + button {
  opacity: 0;
  pointer-events: none;
}
#auth_login #auth_verify-otp {
  display: none;
}
#auth_login #auth_phoneBack2,
#auth_login #auth_phoneBack {
  cursor: pointer;
  color: blue;
}
#auth_login #auth_phoneBack2 {
  font-size: 12px;
}
#auth_login #auth_code {
  letter-spacing: 6px;
}
#auth_login #auth_span {
  display: flex;
}
#auth_login #auth_request-otp {
  margin-left: auto;
}
#auth_login #auth_verifyOTP {
  margin-top: 10px;
}
#auth_login #auth_progressBar_PHONE,
#auth_login #auth_progressBar_OTP {
  display: none;
}
#auth_login .customer_info {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: absolute;
  border-radius: 15px;
  bottom: -40px;
}
#auth_login .customer_info span {
  color: black;
  font-size: 30px;
  vertical-align: -6px;
  cursor: pointer;
}
#auth_login .customer_info .customer_info_bar {
  display: none;
}
#auth_login .customer_info ul {
  display: flex;
  list-style-type: none;
  padding-right: 5px;
}
#auth_login .customer_info ul li {
  padding: 0 5px;
}

@media screen and (max-width: 600px) {
  #auth_login {
    top: 10%;
    transform: translate(0, -10%);
    width: calc(100vw - 20px);
    margin: 10px;
  }
  #auth_login form {
    width: calc(100vw - 40px);
  }
}/*# sourceMappingURL=auth_login.css.map */