/* Login */

/* Common */
.error-msg {
  color: red;
  font-size: 12px;
  display: none;
}

.submit-btn {
  border: none;
  padding: 12px;
  border-radius: 30px;
  background-color: #840089;
  color: white;
}

.policy-text {
  font-size: 11px;
}

.policy-text a {
  color: #840088 !important;
  text-decoration: none;
}

/* Login */

#app {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app .login-text {
  font-size: 20px;
  font-weight: 600;
}

#app .login-heading {
  font-weight: 600;
}

#app .login-subheading {
  font-size: 13px;
}

/* OTP Form */

/* #otp-input-form {
  display: none;
} */

#app .login-subheading .change-number {
  color: #840088;
  cursor: pointer;
}

.otp-input .otp-1,
.otp-input .otp-2,
.otp-input .otp-3,
.otp-input .otp-4 {
  border: 1px solid #f0b9f2;
  padding: 10px;
  border-radius: 5px;
}

.otp-input input {
  border: none;
  text-align: center;
}

.otp-input input:focus-visible {
  outline: none;
}

.otp-input .resend-btn {
  color: #840088;
  font-size: 12px;
  /* display: none; */
  cursor: pointer;
}

.otp-input .resend-text {
  color: grey;
  font-size: 12px;
}

/* Signup Form */

#signup-input-form {
  /* display: none; */
}

.simple-input label {
  display: block;
  text-align: left;
  margin-left: 6px;
  margin-bottom: 5px;
  font-size: 13px;
}

.simple-input input,
.simple-input select {
  width: 100%;
  height: 50px;
  border: 1px solid #f0b9f2;
  border-radius: 6px;
  padding: 5px 12px 5px 12px;
  font-size: 13px;
}

.simple-input input:focus-visible,
.simple-input select:focus-visible {
  outline: none;
}

#signup-input-form .mobile-input {
  background-color: #fff4ff;
}
#signup-input-form .mobile-input input {
  background-color: #fff4ff;
}

.simple-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../img/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position-x: 92%;
  background-position-y: 50%;
}

.simple-input input[type="date"]::-webkit-calendar-picker-indicator {
  /* display: none; */
  opacity: 0;
}

.simple-input input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../img/calendar-input.svg");
  background-repeat: no-repeat;
  background-position-x: 92%;
  background-position-y: 50%;
}
