.page {
  inset: 0;
  display: flex;
  position: fixed;
  flex-direction: column;
  overflow: auto;
}

.page-content {
  flex: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-card {
  width: 500px;
  padding: 32px;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
}
.page-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 32px;
}

.tabs {
  gap: 32px;
  display: flex;
  margin-bottom: 32px;
}
.tab-item {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.tab-item.active {
  color: #f67942;
  border-color: #f67942;
}

.form {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.forget {
  color: #f67942;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
}

.submit-btn {
  border: none;
  outline: none;
  width: 100%;
  height: 56px;
  border-radius: 56px;
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: #f67942;
  margin-top: 13px;
  font-size: inherit;
}
.submit-btn.disabled {
  background: #f9d3c3;
  cursor: not-allowed;
}

.form-tip {
  color: #8a8b92;
  font-weight: 400;
  line-height: 24px;
  margin-top: 12px;
}
.form-tip > a {
  color: #f67942;
}

.infobox {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}
.infobox-text {
  color: #f67942;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.infobox-tip {
  font-size: 14px;
  color: #8a8b92;
  margin-top: 12px;
}

@media screen and (max-width: 749px) {
  .page-content {
    padding: 12px;
    padding-top: 24px;
    justify-content: flex-start;
  }
  .page-card {
    padding: 16px;
    border-radius: 8px;
  }
  .page-card-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .tabs {
    margin-bottom: 24px;
  }
  .tab-item {
    font-size: 16px;
    line-height: 24px;
  }
  .submit-btn {
    height: 48px;
  }
  .infobox-text {
    font-size: 16px;
  }
  .infobox-tip {
    font-size: 12px;
  }
}
