.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-10 {
  font-size: 10px;
}

.fs-8 {
  font-size: 8px;
}

.fs-6 {
  font-size: 6px;
}

.star-color {
  color: #ff9900;
}

.icon-color {
  color: #ccb392;
}

.otp_input_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 700px) {
  .otp_input_wrapper {
    gap: 8px;
  }
}
.otp_input_wrapper .input {
  transition: all 0.3s;
  outline: 0;
  border: none;
  border-radius: 85px;
  background-color: #dad9d9;
  width: 60px;
  height: 60px;
  text-align: center;
}
.otp_input_wrapper .input:focus {
  border: 1px solid #1b1a4e;
}
@media (max-width: 700px) {
  .otp_input_wrapper .input {
    width: 30px;
    height: 30px;
  }
}
