#evlop-passwordless-auth-customer-login-form-inputs{
  display: none;
}
.evlop-auth-container {
  max-width: 500px;
  width: 100%;
  padding: 60px 20px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  /* background-color: white; */
  margin: auto; /* Center the container horizontally */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#errorMessage {
  color: red;
  font-size: 1em;
  font-weight: 500;
  border: 1px solid red;
  padding: 10px;
  border-radius: 5px;
}

#errorMessage:empty {
  display: none;
}

#initLoginSection, #verifyOtpSection, #registrationSection, .name-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#initLoginSection .otp-request-form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

#initLoginSection .otp-request-form .otp-channel-hint-message{
  text-align: center;
  font-size: 0.8em;
}

#initLoginSection .otp-request-form .otp-channel-hint-message a {
  font-size: 0.8em;
  color: inherit;
  text-decoration: underline;
}

#initLoginSection [data-otp-request-form="phoneNumber"] .otp-channel-hint-message{
  display: none;
}
#initLoginSection [data-otp-request-form="phoneNumber"][data-active-channel="whatsapp"] .otp-channel-hint-message[data-channel="whatsapp"]{
  display: block;
}

#initLoginSection [data-otp-request-form="phoneNumber"][data-active-channel="sms"] .otp-channel-hint-message[data-channel="sms"]{
  display: block;
}

#initLoginSection[data-active-form="phoneNumber"] [data-otp-request-form="phoneNumber"]{
  display: flex;
}

#initLoginSection[data-active-form="email"] [data-otp-request-form="email"]{
  display: flex;
}

#initLoginSection[data-active-form="phoneNumber"] button[data-target-otp-request-form="phoneNumber"]{
  display: none;
}

#initLoginSection[data-active-form="email"] button[data-target-otp-request-form="email"]{
  display: none;
}

#initLoginSection .alternate-login-methods{
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-top: 50px;
}

#initLoginSection .alternate-login-methods:empty{
  display: none;
}

#initLoginSection .alternate-login-methods:before{
  position: absolute;
  content: "";
  left: 0;
  top: -26px;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

#initLoginSection .alternate-login-methods:after{
  content: "OR";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #999;
  text-align: center;
  z-index: 1;
  padding: 0 10px;
}



.name-fields {
  flex-direction: row;
  justify-content: space-between;
}

input {
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%; /* Adjust width for text inputs */
}



.name-fields input {
  width: calc(50% - 10px); /* Adjust width for name fields */
}

.evlop-auth-container button {
  background-color: white;
  color: #333;
  cursor: pointer;
  width: 100%; /* Adjust width for buttons */
  padding: 10px 35px;
  align-self: center;
  border: 1px solid #999;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.evlop-auth-container button:hover {
  background-color: #f8f8f8;
}

@keyframes button-loading-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.evlop-auth-container button.is-loading {
  background-color: #333;
  color: #333;
  cursor: wait;
  pointer-events: none;
  position: relative;
}

.evlop-auth-container button.is-loading::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: 0.2em solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: button-loading-spin 1s linear infinite;
  margin-left: 0.5em;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* transform around center */
  transform-origin: 50% 50%;
}

.evlop-auth-container .iti__flag:empty,
.evlop-auth-container .iti__arrow:empty {
  display: inline-block;
}