body {
  background-color: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.page-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  height: auto;
}

.page-form {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  padding: 10px;
}

.page-logo {
  padding: 0;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-logo-img {
  max-width: 100%;
  max-height: 100%;
  min-width: 260px;
}

.page-title {
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
}

.form-row.hidden {
  display: none;
}

.form-label {
  display: block;
  height: auto;
  text-align: left;
  margin-bottom: 8px;
  line-height: 22px;
  padding: 0;
  color: #606266;
}

.form-input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  outline: none;
  color: #606266;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  font-size: 14px;
}

.form-button {
  display: block;
  background-color: #409eff;
  width: 100%;
  height: 36px;
  position: relative;
  margin: 20px 0 0 0;
  padding: 0;
  text-align: center;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-button:hover {
  cursor: pointer;
  background-color: #a0cfff;
}

.form-button.disabled {
  cursor: default;
  background-color: #a0cfff;
}

.form-link {
  color: #409eff;
}
.form-link.hidden {
  display: none;
}
.form-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.messagebox-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  overflow: auto;
}
.messagebox-overlay.show {
  display: block;
}
.messagebox-container {
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  overflow: auto;
}
.messagebox {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  padding-bottom: 10px;
  vertical-align: middle;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #ebeef5;
  font-size: 18px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
  text-align: left;
  overflow: hidden;
  backface-visibility: hidden;
}
.messagebox-header {
  position: relative;
  padding: 15px 15px 10px 15px;
  box-sizing: border-box;
}
.messagebox-title {
  padding-left: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
  color: #303133;
}
.messagebox-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.messagebox-close-btn:before {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 1px;
  left: 7.5px;
  background-color: #909399;
  transform: rotate(-45deg);
}
.messagebox-close-btn:after {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 1px;
  right: 7.5px;
  background-color: #909399;
  transform: rotate(45deg);
}
.messagebox-close-btn:hover:before,
.messagebox-close-btn:hover:after {
  background-color: #409eff;
}
.messagebox-body {
  padding: 10px 15px;
  color: #606266;
  font-size: 14px;
}
.messagebox-body-text {
  margin: 0;
}
.messagebox-footer {
  padding: 5px 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}