button {
  font-family: Changa, sans-serif;
}
#otp-popup-father {
  display: flex;
  justify-content: center;
	align-items: center;}
	.overlay{
		background-color: #ffffffd4;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    z-index: 10001;
	}

.otp-content {
  text-align: center;
  background-color: #47709e;
  border: #dcdcdc solid 1px;
  border-radius: 10px;
  color: white;
  padding: 20px;
	position: fixed;
    top: 10%;
    z-index: 10002;
	scale:0.1;
	transition:ease 0.5s;
}
.otp-content.shown{
	scale:1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#resend-otp-btn {
  background-color: transparent;
  border: none;
  color: white;
  text-decoration: underline !important;
  cursor: pointer;
	font-size:15px;
	font-weight:bold;
	padding:0;
}
.btn-disabled {
  color: #ffffff8c !important;
}

.otp-display-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 10px;
  margin-top: 20px;
}

.otp-display-container .otp-box {
  width: 50px;
  height: 50px;
  border: 2px solid #ccc;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: black;
}

.otp-display-container input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.otp-box.active {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.otp-box.active::after {
  content: "";
  width: 2px;
  height: 60%;
  background-color: #007bff;
  display: block;
  animation: blink 1s step-end infinite;
}

.otp-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.otp-buttons button {
  padding: 0 11px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  
}
#wrong-otp{
	color: red;
display:none;
margin:0;
}

.show-wrong-otp{
	display:block !important;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
