:root {
  --themeprimaryclr: #1e293b;
  --themesecondaryclr: #2563eb;
  --themethirdclr:#1d4ed8;
  --plainclr: #ffffff;
  --grayclr: #64748b;
  --main-border: #cbd5e1;
  --gradient-bg: linear-gradient(135deg, #60a5fa, #2563eb) ;
}

.otp-two {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-bg);
  font-family: "Segoe UI", sans-serif;
}
.otp-two .otp-container {
  background: var(--plainclr);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (max-width: 575px) {
  .otp-two .otp-container {
    padding: 24px;
  }
}
.otp-two .otp-container h2 {
  margin-bottom: 16px;
  color: var(--themeprimaryclr);
}
.otp-two .otp-container .info-text {
  margin-top: 15px;
  color: var(--grayclr);
  font-size: 14px;
}
.otp-two .otp-container form .otp-inputs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 575px) {
  .otp-two .otp-container form .otp-inputs {
    gap: 9px;
  }
}
.otp-two .otp-container form .otp-inputs input {
  width: 48px;
  height: 58px;
  font-size: 24px;
  text-align: center;
  border: 1px solid var(--main-border);
  border-radius: 8px;
  transition: 0.3s ease;
}
.otp-two .otp-container form .otp-inputs input:focus {
  border-color: var(--themesecondaryclr);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  outline: none;
}
@media (max-width: 575px) {
  .otp-two .otp-container form .otp-inputs input {
    width: 36px;
    height: 43px;
  }
}
.otp-two .otp-container form .submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--themesecondaryclr);
  color: var(--plainclr);
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.otp-two .otp-container form .submit-btn:hover {
  background: var(--themethirdclr);
}/*# sourceMappingURL=enter-otpDesign4.css.map */