#otp-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#otp-popup {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  padding: 30px;
  border-radius: 20px;
  color: white;
  max-width: 360px;
  width: 90%;
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

#otp-popup h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

#otp-popup p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

#otp-phone-wrapper {
  display: flex;
  gap: 5px;
  margin: 15px 0;
  justify-content: center;
  flex-wrap: wrap;
}

#country-code, #otp-phone {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: white;
  color: #333;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#country-code {
  width: 90px;
  font-weight: bold;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#otp-phone {
  width: 160px;
}

#otp-phone::placeholder {
  color: #777;
}

#otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.otp-digit {
  width: 45px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: none;
  background: rgba(255,255,255,0.3);
  color: white;
  border-radius: 10px;
  outline: none;
}

.btn {
  background: white;
  color: #fd1d1d;
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

#otp-resend {
  background: transparent;
  color: white;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

#otp-timer {
  font-size: 13px;
  color: white;
  margin-top: 5px;
}

#otp-message {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
}
