.otpCont {
  display: flex;
  justify-content: space-between;
  height: auto;
  margin-top: 10px;
}

.form-input-group:has(.otSc:focus) label {
  font-size: 16px;
}

.otSc {
  border: none;
  border-radius: 12px;
  padding: 10px 0px;
  font-size: 16px;
  text-align: center;
  width: 20%;
  height: 60px;
  width: calc(100% / 8);
  aspect-ratio: 1/1;
  border: 1px solid #cccc;
  background-color: #f8f8f8;
}

.otSc:focus {
  background-color: #fff;
}

.wrong-otp>.otSc {
  border: 1.5px solid #f00;
  background-color: rgba(255, 0, 0, 0.1);
}

.wrong-otp-message {
  color: #f00;
  margin-top: 5px;
  display: none;
}

.btn-form-submit {
  margin: 10px 0 0 0;
  height: var(--button-height);
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
}

.form-inputs-parent {
  height: 45px;
}

.otp-resend-container {
  height: 30px;
  text-align: center;
}

.otp-resend-container.signup {
  margin-top: 5px;
  text-align: left;
}

.otp-not-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(107, 107, 107, 1);
}


.resend-link {
  background-color: transparent;
  border: 0;
  width: auto;
  color: rgba(29, 96, 252, 1);
  cursor: pointer;
}


@media screen and (max-width: 600px) {
  .otpCont {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-top: 10px;
  }

  .form-input-group:has(.otSc:focus) label {
    font-size: 16px;
  }

  .otSc {
    border: none;
    border-radius: 8px;
    padding: 10px 0px;
    font-size: 16px;
    text-align: center;
    height: initial;
    width: calc(100% / 7);
    aspect-ratio: 1/1;
    border: 1px solid #cccc;
    background-color: #f8f8f8;
  }

  .otSc:focus {
    background-color: #fff;
  }

  .wrong-otp>.otSc {
    border: 1.5px solid #f00;
    background-color: rgba(255, 0, 0, 0.1);
  }

  .wrong-otp-message {
    color: #f00;
    display: none;
  }

  .btn-form-submit {
    margin: 10px 0 0 0;
    height: var(--button-height);
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
  }

  .form-inputs-parent {
    height: 45px;
  }

  .otp-resend-container {
    height: 30px;
    text-align: center;
  }

  .otp-resend-container.signup {
    margin-top: 5px;
    text-align: left;
  }

  .otp-not-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(107, 107, 107, 1);
  }


  .resend-link {
    background-color: transparent;
    border: 0;
    width: auto;
    color: rgba(29, 96, 252, 1);
    cursor: pointer;
  }
}