body {
  width: 100%;
  height: 100vh;
}
body #app {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 600px;
  min-height: 700px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
main .bottom img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 270px;
}
main .top {
  padding: 40px 20px 20px 20px;
}
main .top .title {
  text-align: center;
}
main .top .title a {
  color: #808595;
}
main .top .title a.active {
  color: #ff9800;
}
main .top .login_forms {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
main .top .login_forms input {
  margin-bottom: 20px;
  border: 1px solid #f0eeee;
  outline: none;
  height: 40px;
  border-radius: 5px;
  padding-left: 20px;
  transition: all 0.3s;
}
main .top .login_forms input:focus {
  border: 1px solid #ff9800;
}
main .top .login_forms input.sign_input {
  margin-bottom: 15px;
}
main .top .login_forms .code {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
main .top .login_forms .code input {
  width: 60%;
}
main .top .login_forms .code img {
  height: 42px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #f0eeee;
}
main .top .login_forms > button {
  border: none;
  cursor: pointer;
  height: 40px;
  color: white;
  background-color: #ff9800;
  border-radius: 5px;
}
main .top .other_login {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
main .top .other_login > p {
  font-size: 14px;
  color: #808595;
}
main .top .other_login::before {
  position: absolute;
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  background-color: #8e9aaf;
  left: 0;
  top: 9px;
}
main .top .other_login::after {
  position: absolute;
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  background-color: #8e9aaf;
  right: 0;
  top: 9px;
}
main .top .other_login > div {
  margin-top: 20px;
}
main .top .other_login > div img {
  width: 40px;
  margin-right: 10px;
  cursor: pointer;
}
main .top .other_login > div img:last-child {
  margin-right: 0;
}

/*# sourceMappingURL=login.css.map */
