.otp-two {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  font-family: "Segoe UI", sans-serif;
}
.otp-two .otp-container {
  background: #ffffff;
  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: #1e293b;
}
.otp-two .otp-container .info-text {
  margin-top: 15px;
  color: #64748b;
  font-size: 14px;
}
.otp-two .otp-container form .otp-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}
.otp-two .otp-container form .otp-inputs input {
  width: 48px;
  height: 58px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: 0.3s ease;
}
.otp-two .otp-container form .otp-inputs input:focus {
  border-color: #2563eb;
  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: #2563eb;
  color: white;
  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: #1d4ed8;
}/*# sourceMappingURL=otp-two.css.map */