/* ===== EDIT EMAIL OTP PAGE ===== */
.otp-email-wrapper {
  max-width: 576px;
  margin: 0 auto;
  min-height: 100vh;
  background: white;
}
@media (min-width: 768px) {
  .otp-email-wrapper {
    max-width: 450px;
    margin: 4rem auto;
    min-height: auto;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #eee;
  }
}
.otp-email-icon-circle {
  width: 80px; height: 80px;
  background: #0dc1f2; color: #5555a5;
  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: #5555a5;
  box-shadow: 0 0 0 4px #0dc1f2;
  background-color: #fff;
  transform: scale(1.05);
}
.otp-email-btn {
  background-color: #5555a5; 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; }

@media (min-width: 768px) {
  .otp-outer-wrapper { background: #f5f5f5 !important; }
}
