/* OTP Modal styles — Email OTP Verification for Elementor Forms (by Manish Dhiman / 360dhiman.com) */
.eotp-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.eotp-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.eotp-modal-content input[type=text] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
}
.eotp-actions button {
  margin: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #f7f7f7;
}
.eotp-actions button:hover {
  background: #eee;
}
.eotp-message {
  margin-top: 8px;
  min-height: 20px;
}
