.input-container {
  position: relative;
}
.required-indicator {
  position: absolute;
  top: 13%;
  right: 5px;
  transform: translateY(-50%);
  color: red;
}
.required-indicator-star {
  position: absolute;
  top: 17%;
  right: 21px;
  transform: translateY(-50%);
  color: red;
  font-size: 18px;
}
.verify-indicator {
  width: 100%;
  padding: 3px;
  border-radius: 3px;
  background-color: rgba(52, 152, 219, 0.3);
  color: black;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  bottom: -24%;
  cursor: pointer; /* Change cursor for the entire block */
  pointer-events: auto; /* Allow pointer events */
  transition: background-color 0.3s;
  z-index: 9;
}

.button-update-phone-number {
  display: flex;
  align-items: center !important;
  color: rgb(255, 0, 0);
  font-size: 1.1rem;
}
.button-update-phone-number:disabled {
  display: flex;
  align-items: center !important;
  color: rgb(82, 78, 78);
  font-size: 1rem;
}
.verify-indicator:hover {
  background-color: rgba(92, 184, 245, 0.596);
}
.basic-info-inputs-phone-verify {
  display: grid;
  grid-template-columns: 50px 1fr 20px 55px;
  align-items: center;
  gap: 20px;
  row-gap: 16px;
  max-width: 560px;
}
.button-phone-verify:disabled {
  background-color: grey;
}
.basic-info-inputs-phone-verify input {
  font-size: 15px !important;
  font-weight: bold;
}

.basic-info-inputs-phone-verify input:read-only {
  border: none;
  background-color: transparent;
}

.basic-info-inputs-phone-verify label,
.basic-info-inputs-phone-verify .label {
  margin: 0;
  font-size: 12.5px;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-bottom: unset !important;
}

.basic-info-inputs-phone-verify button {
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  padding: 0;
}

.basic-info-inputs-phone-verify button svg {
  fill: grey;
}
.verify-phone-number-text {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px !important;
  color: gray;
}
.custom-input-number {
  position: relative;
}

.custom-input-number::before {
  content: "+1";
  position: absolute;
  left: 4px;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 3px 0 0 3px;
  border-right: none;
  font-size: 15px !important;
  font-weight: bold;
  color: #495057;
}
.custom-input-number input {
  padding-left: 27px;
  padding-bottom: 6px;
}

.sucess-text {
  color: green;
  width: 100%;
  font-size: 14px;
  height: 20px;
}

.verify-text-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1.2rem;
}

@media screen and (max-width: 440px) {
  .basic-info-inputs-phone-verify {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
    gap: 20px;
    row-gap: 16px;
    max-width: 560px;
    margin-bottom: 25px;
  }
  .basic-info-inputs-phone-verify label {
    margin-right: 10px;
  }
  .input-button-verify {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .verify-text-modal {
    margin-bottom: 16px;
  }
}
