@charset "utf-8";
@import "reset.css";
.c-image {
  width: 100%;
  height: 100%;
}
.c-layout {
  width: 1000px;
  margin: 0 auto;
}
html {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
body {
  flex: 1;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 48px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.container {
  flex: 1;
  position: relative;
  height: 100%;
  width: 100%;
}
.container::after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  height: 360px;
  background-color: #FFC70C;
  z-index: -1;
}
.container .logo {
  margin: 80px auto 24px;
  text-align: center;
  font-size: 42px;
}
.container .login-wrap {
  width: 480px;
  margin: 0 auto 64px;
  background-color: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 0 24px 24px rgba(0, 0, 0, 0.03);
}
.container .login-wrap .title {
  font-size: 28px;
}
.container .login-wrap .form .form-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin: 8px 0;
  padding: 8px 0;
}
.container .login-wrap .form .form-item .label {
  display: flex;
  align-items: center;
}
.container .login-wrap .form .form-item .input {
  flex: 1;
  height: 40px;
  font-size: 16px;
  color: #232323;
  outline: none;
  border: none;
  -webkit-appearance: none;
}
.container .login-wrap .form .form-item .code,
.container .login-wrap .form .form-item .image-code {
  width: 160px;
  text-align: center;
  color: #FFC70C;
  text-decoration: none;
}
.container .login-wrap .form .form-item .image-code img {
  width: 160px;
  height: 48px;
  background-color: #f9f9f9;
}
.container .login-wrap .form .status-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.container .login-wrap .form .status-wrap img {
  width: 72px;
  height: 72px;
  color: #f9f9f9;
}
.container .login-wrap .form .status-wrap p {
  margin: 16px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.container .login-wrap .form .button {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  height: 48px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
  background-color: #FFC70C;
  outline: none;
  border: none;
  margin-top: 24px;
}
.container .login-wrap .progress {
  display: flex;
  align-items: flex-start;
  padding: 48px 0 0;
}
.container .login-wrap .progress .step {
  position: relative;
  flex: 1;
  margin: 0 2px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.container .login-wrap .progress .step::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  right: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.4);
}
.container .login-wrap .progress .step.active {
  color: #15DF73;
}
.container .login-wrap .progress .step.active::before {
  background-color: #15DF73;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #393939;
}
.footer p {
  font-size: 12px;
  color: #969696;
}
.footer p a {
  color: #969696;
}
