.phone-opt-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #00000010;
}

.phone-opt {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 40vh;
  background-color: #fffffff0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  align-items: center;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.phone-opt-title {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-input {
  display: block;
  height: 6vh;
  width: 80vw;
  margin-bottom: 16px;
  padding: 0 16px;
  border-radius: 10px;
}

.phone-captcha-container {
  width: 80vw;
  display: flex;
  column-gap: 6px;
}

.phone-captcha {
  display: block;
  height: 6vh;
  width: 55vw;
  padding: 0 16px;
  border-radius: 10px;
}

.count-down {
  font-size: 14px;
  width: calc(25vw - 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, rgb(255, 96, 52), rgb(238, 10, 36));
}

.phone-opt-btn {
  width: 80vw;
  height: 6vh;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgb(255, 96, 52), rgb(238, 10, 36));
}