.enter-otp {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #a855f7, #ec4899, #ef4444);
}

.otp-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.otp-box h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.otp-box p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.verify-btn {
  width: 100%;
  padding: 10px;
  background-color: #8b5cf6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.verify-btn:hover {
  background-color: #7c3aed;
}

.resend-text {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.resend-text a {
  color: #8b5cf6;
  text-decoration: none;
}/*# sourceMappingURL=enter-otp.css.map */