:root {
  --themeprimaryclr:#8b5cf6;
  --themesecondaryclr:#7c3aed;
  --plainclr:#fff;
  --grayclr:#555;
  --main-border:#ccc;
  --gradient-bg:linear-gradient(to right, #a855f7, #ec4899, #ef4444) ;
}

.enter-otp {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-bg);
}
.enter-otp .otp-box {
  background: var(--plainclr);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.enter-otp .otp-box h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.enter-otp .otp-box p {
  font-size: 0.9rem;
  color: var(--grayclr);
  margin-bottom: 1rem;
}
.enter-otp .otp-box .otp-inputs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 20px;
}
@media (max-width: 575px) {
  .enter-otp .otp-box .otp-inputs {
    gap: 9px;
  }
}
.enter-otp .otp-box .otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid var(--main-border);
  border-radius: 6px;
}
@media (max-width: 575px) {
  .enter-otp .otp-box .otp-input {
    width: 35px;
  }
}
.enter-otp .otp-box .btn-theme-one {
  width: 100%;
  padding: 10px;
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.enter-otp .otp-box .btn-theme-one:hover {
  background-color: var(--themesecondaryclr);
}
.enter-otp .otp-box .resend-text {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.enter-otp .otp-box .resend-text a {
  color: var(--themeprimaryclr);
  text-decoration: none;
}/*# sourceMappingURL=enter-otpDesign1.css.map */