/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */
/* body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4070f4;
} */
:where(.containers, .otp-input-fields, .containers header) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.containers {
  /* background: #fff; */
  padding: 30px 65px;
  border-radius: 12px;
  row-gap: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.containers header {
  height: 65px;
  width: 65px;
  background: #4070f4;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
}
.containers h4 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}
#otp_form .otp-input-fields {
  flex-direction: row;
  column-gap: 10px;
}
.otp-input-fields input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.otp-input-fields input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.otp-input-fields input::-webkit-inner-spin-button,
.otp-input-fields input::-webkit-outer-spin-button {
  display: none;
}
#otp_form button {
  margin-top: 25px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 9px 0;
  cursor: pointer;
  border-radius: 6px;
  pointer-events: none;
  background: #6e93f7;
  transition: all 0.2s ease;
}
#otp_form  button.active {
  background: #4070f4;
  pointer-events: auto;
}
#otp_form button:hover {
  background: #0e4bf1;
}
#otp_button_group button {
  pointer-events: auto !important;
  cursor: pointer;
  opacity: 1;
}

#otp_button_group button:disabled {
  pointer-events: none;
  opacity: 0.6;
}
#otp_form button {
  pointer-events: auto;
}
.showgetotpbutton {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.8;
  font-size: 1.2rem; /* reduced size from 3rem */
  color: #4070f4;
  /* background: none; */
  border: none;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.showgetotpbutton:hover {
  opacity: 1;
  transform: scale(1.1);
}

.resend-otp {
  color: #4070f4;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resend-otp:hover {
  text-decoration: underline;
  color: #0e4bf1;
}

