#sendOtpBtn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.otp-close-btn{
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #000;
}
#__toast_layer{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2147483647;
}
.otp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.otp-box {
  position: relative;
  background: #fff;
  width: 92%;
  max-width: 420px;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  animation: pop .3s ease;
  font-family: 'Poppins', sans-serif;
}
@keyframes pop {
  from { transform: scale(.8); opacity:0 }
  to { transform: scale(1); opacity:1 }
}
.otp-box h2 {
  margin: 0 0 5px;
  font-size: 22px;
}
.otp-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.otp-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.otp-box button:not(.otp-close-btn) {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}
.otp-box button:hover {
  background: #3730a3;
}
#floatingCallWidget{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  height: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  display: none;
  z-index: 99999;
  overflow: hidden;
}
#floatingCallWidget iframe{
  width: 1400px;       
  height: 900px;
  border: none;
  transform: scale(0.35) translate(-2800px, -1500px);
  transform-origin: top left;
  pointer-events: auto;
}
#endCallBtn{
  position: absolute;
  top: 6px;
  right: 6px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
}
#sendOtpBtn{
  border-radius: 39px !important;
  background: #F28C22 !important;
  color: #fff !important;
  font-weight: 600;
}
#verifyOtpBtn{
  border-radius: 39px !important;
  background: #0fa3db !important;
  color: #fff !important;
  font-weight: 600;
}
#__toast_layer .toast{
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  min-width: 260px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
#__toast_layer .toast.show{
  transform: translateX(0);
  opacity: 1;
}
.toast{
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 260px;
  max-width: 340px;
  padding: 14px 18px;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn .35s ease;
  transition: opacity .4s ease, transform .4s ease;
}
#__toast_layer .toast.success { background: linear-gradient(135deg, #16a34a, #22c55e); }
#__toast_layer .toast.error   { background: linear-gradient(135deg, #dc2626, #ef4444); }
#__toast_layer .toast.info    { background: linear-gradient(135deg, #0284c7, #38bdf8); }

#__toast_layer .toast .icon{
  font-size: 18px;
}
@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(120%); }
}

@media (max-width: 768px) {

  .otp-box {
    width: 94%;
    padding: 22px;
    border-radius: 14px;
  }

  .otp-box h2 {
    font-size: 18px;
  }

  .otp-box p {
    font-size: 13px;
  }

  .otp-box input {
    padding: 12px;
    font-size: 14px;
  }

  #sendOtpBtn,
  #verifyOtpBtn {
    padding: 12px;
    font-size: 14px;
  }

  

}

@media (min-width: 769px) and (max-width: 1024px) {

  .otp-box {
    max-width: 480px;
  }

 

}
@media (max-width: 600px) {
 #__toast_layer .toast {
    left: 50%;
    right: auto;
    transform: translate(-50%, -120%);
    min-width: 85%;
    max-width: 90%;
  }

  #__toast_layer .toast.show {
    transform: translate(-50%, 0);
  }
  .otp-close-btn {
  font-size: 22px;
  top: 10px;
  right: 12px;
}
}