/* ===== EDIT EMAIL OTP PAGE ===== */
.otp-email-wrapper {
  width: 100%;
}

.otp-email-icon-circle {
  width: 80px; height: 80px;
  background: #fff5f0; color: #ff5200;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}
.otp-email-box {
  border: 2px solid #eee;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: #333;
  background-color: #f9f9f9;
  transition: all 0.2s ease;
  width: 45px; height: 55px;
}
@media (min-width: 768px) {
  .otp-email-box { width: 55px; height: 65px; font-size: 1.8rem; }
}
.otp-email-box.active {
  border-color: #ff5200;
  box-shadow: 0 0 0 4px #fff5f0;
  background-color: #fff;
  transform: scale(1.05);
}
.otp-email-btn {
  background-color: #ff5200; color: white; border: none;
  width: 100%; padding: 16px; border-radius: 14px;
  font-weight: 700; transition: 0.3s; cursor: pointer;
}
.otp-email-btn:disabled { background-color: #ccc; cursor: not-allowed; }


