* {
  font-family: "Be Vietnam Pro", sans-serif;
}

.main-container {
  background-color: #f4f5f6;
  border-radius: 8px;
  max-width: 800px;
  height: 100vh;
  overflow: hidden;
  border: none;
}

.main-button {
  background-color: #66b2ff;
  padding: 0;
  width: 90px;
  height: 40px;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.main-button:disabled {
  background-color: #d9d9d9;
  cursor: not-allowed;
}

.button-link {
  padding: 0;
  border: none;
  cursor: pointer;
  background: linear-gradient(113.96deg, #00ffed 0%, #00b8ba 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-label {
  color: #f47c9a;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  margin-bottom: 8px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}

.checkbox-container:hover input~.checkbox-checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked~.checkbox-checkmark {
  background-color: #66b2ff;
}

.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkbox-checkmark:after {
  display: block;
}

.checkbox-container .checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 2px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 8px;
  font-weight: 400;
  line-height: 16px;
}

.button-container {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
}

.main-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.login-container {
  padding: 10px 14px 8px;
}

.login-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
}

.login-input-container {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.login-input {
  flex: 1;
  padding: 9px 12px;
  border-radius: 6px;
  background-color: white;
  border: 1px solid #e6e6e6;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.condition-container {
  display: flex;
  align-items: start;
}

.condition-container p {
  font-size: 8px;
  font-weight: 400;
  line-height: 16px;
}

.otp-container {
  padding: 21px 9px 18px 16px;
}

.otp-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.otp-input-container {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
}

.otp-input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  border-bottom: 1px solid black;
  outline: none;
  background-color: transparent;

  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;

  &::-webkit-inner-spin-button,
  &::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  &::-moz-number-spin-box {
    -moz-appearance: none;
    margin: 0;
  }

  &::-ms-inner-spin-button,
  &::-ms-outer-spin-button {
    -ms-appearance: none;
    margin: 0;
  }
}

.share-link-component {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 16px;
}

.list-social {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.share-link {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: white;
  padding: 5px 12px;
  color: white;
  background-color: #4d4d4d;
  border-radius: 6px;
}


.container {
  display: flex;
  align-items: center;
  background-color: #f4f5f6;
  padding: 20px;
  border-radius: 8px;
}

.gift-image {
  width: 70px;
  height: auto;
  margin-right: 20px;
}

.text-box {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: left;
  line-height: 1.4;
}

.anchor-link {
  color: #66b2ff;
  text-decoration: none;
  font-size: 14px;
}