:root {
  --price-color: #1e5bff;
  --iconback-color: #e8f0ff;
  --footer-color: #0b1324;
  --text-muted-color: #6c757d;
}

body {
  background: #f5f7fb;
}
.hide{
  display:none !important;
}
.cursor-pointer{
  cursor:pointer;
}

/*Testing css*/

.testing-ribbon {
  position: fixed;
  top: 22px;
  right: -58px;
  width: 220px;
  background: linear-gradient(135deg,#ff9800,#ff5722);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 99999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  animation: ribbonGlow 2s infinite alternate;
  pointer-events: none;
}

@@keyframes ribbonGlow {

  0% {
    box-shadow: 0 0 10px rgba(255,87,34,0.4);
  }

  100% {
    box-shadow: 0 0 25px rgba(255,87,34,0.9);
  }
}

.testing-ribbon span {
  display: block;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* MOBILE */

@@media(max-width:768px) {

  .testing-ribbon {
    width: 180px;
    right: -48px;
    top: 18px;
    font-size: 11px;
    padding: 8px 0;
  }
}
/*Testing css end*/

/*Start otp css*/

/* OVERLAY */
.otp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

  /* SHOW */
  .otp-overlay.show {
    display: flex;
    animation: fadeIn .3s ease;
  }

/* BOX */
.otp-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 28px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  animation: popup .35s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CLOSE */
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  background: #f1f5ff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

/* ICON */
.otp-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg,#2563eb,#4f46e5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 34px;
  animation: pulse 1.5s infinite;
}

/* TITLE */
.otp-box h4 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

/* EMAIL */
.otp-email {
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
}

  .otp-email span {
    color: #2563eb;
    font-weight: 600;
  }

/* OTP INPUTS */
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

  .otp-inputs input {
    width: 40px;
    height: 48px;
    border-radius: 14px;
    border: 2px solid #dbe4ff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    transition: .3s;
  }

    .otp-inputs input:focus {
      border-color: #2563eb;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(37,99,235,0.15);
    }

/* BUTTON */
.verify-btn {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg,#2563eb,#4f46e5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

  .verify-btn:hover {
    transform: translateY(-2px);
  }

/* RESEND */
.resend {
  margin-top: 18px;
  font-size: 14px;
  color: #6b7280;
}

  .resend a {
    text-decoration: none;
    font-weight: 600;
    color: #2563eb;
  }

/* ANIMATION */
@@keyframes popup {
  from {
    transform: scale(.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,99,235,0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37,99,235,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,99,235,0);
  }
}

/* MOBILE */
@@media(max-width:576px) {

  .otp-box {
    padding: 30px 18px;
    border-radius: 22px;
  }

  .otp-inputs {
    gap: 7px;
  }

    .otp-inputs input {
      width: 42px;
      height: 50px;
      font-size: 20px;
    }
}
/*End Otp CSS*/