.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.color-blue4 {
  color: #044479;
}
.mr20 {
  margin-right: 20px;
}
.mw6rem {
  cursor: pointer;
  min-width: 6rem;
}
.form {
  position: absolute;
  z-index: 999;
  top: 60px;
  left: 220px;
  color: #181818;
  background-color: #fff;
  width: 450px;
  height: 360px;
  border-radius: 16px;
  padding: 55px 45px;
}
.form a {
  cursor: pointer;
}
.form .title {
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 40px;
  font-weight: bold;
}
.form .input {
  border-bottom: 1px solid #3c3829;
  margin-bottom: 36px;
}
.form .input input {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 0;
}
.form .input input::placeholder {
  color: #181818;
}
.form .btns {
  margin-bottom: 36px;
}
.form .btns .btn {
  width: 180px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: #044479;
  cursor: pointer;
  color: #e7b66e;
  border-radius: 6px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.form .btns .btn:first-child:hover {
  background-color: #1d4072;
}
.form .btns .btn:last-child {
  border: 1px solid #bbbbbb;
  background-color: transparent;
  color: #000;
}
.form .btns .btn:last-child:hover {
  border-color: #044479;
  background-color: #044479;
  color: #e7b66e;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  vertical-align: middle;
  background: #ffffff7a;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 10px;
  width: 1rem;
  height: 1rem;
  position: relative;
  cursor: pointer;
}
input[type="checkbox"]:checked {
  background: #044479;
  border: none;
}
input[type="checkbox"]:checked::after {
  content: "";
  width: 0.55rem;
  height: 0.3rem;
  position: absolute;
  top: 3px;
  left: 3px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) scale(0.8);
}
