.login {
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0;
}
.login .title {
  text-align: center;
  padding: 30px 0;
}
.login .form {
  padding: 20px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.login .form .form-item {
  width: 50%;
  padding: 15px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.form .form-item .label {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}
.form .form-item input {
  width: 100%;
  height: 45px;
  padding: 5px;
}
.login .form .form-code-num {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.form .form-code-num .label {
  padding-right: 8px;
}
.form-tips {
  padding: 25px 15px;
}
.form-tips span {
  padding-left: 10px;
  color: #ff1212;
  font-size: 14px;
}
.form-btns {
  padding: 25px 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.form-btns .btn {
  margin: 0 100px;
  padding: 15px 30px;
  background-color: #3d437f;
  color: aliceblue;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
}
.form-btns .to-login a {
  text-decoration: none;
  color: aliceblue;
}