:root {
  --themeprimaryclr: #667eea;
  --themesecondaryclr: #764ba2;
  --themethirdclr:#1e293b;
  --plainclr: #fff;
  --grayclr: #333;
  --darkclr:#000;
  --lightclr:#f3f4f6;
  --dark-bg:rgba(255, 255, 255, 0.15);
  --light-bg:rgba(255, 255, 255, 0.8);
}

.otp-three {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr));
  font-family: "Segoe UI", sans-serif;
}
.otp-three .otp-wrapper .otp-box {
  background: var(--dark-bg);
  padding: 40px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--plainclr);
}
@media (max-width: 575px) {
  .otp-three .otp-wrapper .otp-box {
    padding: 24px;
  }
}
.otp-three .otp-wrapper .otp-box h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.otp-three .otp-wrapper .otp-box p {
  font-size: 14px;
  margin-bottom: 20px;
}
.otp-three .otp-wrapper .otp-box form .otp-fields {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .otp-three .otp-wrapper .otp-box form .otp-fields {
    gap: 9px;
  }
}
.otp-three .otp-wrapper .otp-box form .otp-fields input {
  width: 42px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  border: none;
  border-radius: 10px;
  background: var(--light-bg);
  color: var(--themethirdclr);
  transition: 0.3s ease;
}
.otp-three .otp-wrapper .otp-box form .otp-fields input:focus {
  outline: 2px solid var(--plainclr);
  background: var(--plainclr);
  color: var(--darkclr);
}
@media (max-width: 575px) {
  .otp-three .otp-wrapper .otp-box form .otp-fields input {
    width: 35px;
    height: 43px;
  }
}
.otp-three .otp-wrapper .otp-box form .theme-btn-one {
  width: 100%;
  padding: 12px;
  background: var(--plainclr);
  color: var(--grayclr);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.otp-three .otp-wrapper .otp-box form .theme-btn-one:hover {
  background: var(--lightclr);
  transform: translateY(-2px);
}
.otp-three .otp-wrapper .otp-box .resend-text {
  margin-top: 16px;
  font-size: 13px;
}
.otp-three .otp-wrapper .otp-box .resend-text a {
  color: var(--plainclr);
  font-weight: bold;
  text-decoration: underline;
}
.otp-three .otp-wrapper .otp-box .resend-text a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=enter-otpDesign5.css.map */