.header-top {
  justify-content: center;
}

.main-container {
  background-image: url(/logoWeb/public/img/login-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  padding-top: 132px;
  align-items: flex-start;
}

.footer-wrap {
  margin-top: 0;
}

/* 表单 start */
.form-container {
  width: 496px;
  padding: 68px 52px 41px 52px;
  background-color: #fff;
  border-radius: 18px;
}

.main-title {
  font-weight: bold;
  font-size: 24px;
  color: #1F9E72;
  width: 100%;
  text-align: center;
}

.form-line {
  margin-top: 20px;
  display: flex;
}
.form-line:first-of-type {
  margin-top: 46px;
}
#login form .form-line:first-of-type {
  margin-top: 40px;
}

.form-input {
  position: relative;
  flex: 1;
}
.form-input .input-icon {
  position: absolute;
  left: 13px;
  top: 14px;
}
.form-input input {
  height: 50px;
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 4px;
  border: 1px solid #d6d6d6;
  padding-left: 45px !important; 
  font-weight: 400;
  font-size: 14px;
}
.form-input input::placeholder {
  color: #888888;
}
.form-input button {
  border: none;
  background: none;
  position: absolute;
  right: 14px;
  top: 14px;
  font-weight: 400;
  font-size: 14px;
  color: #1F9E72;
  cursor: pointer;
}

.verfiy-code {
  height: 50px;
  width: 133px;
  margin-left: 8px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}
.verfiy-code img {
  width: 100%;
}

.login-btn,
.register-btn {
  height: 55px;
  width: 100%;
  background-color: #1F9E72;
  border-radius: 4px;
  border: none;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
}

.register-btn {
  background-color: #EDF8EE;
  color: #333333;
  border: 1px solid #9DD9C4;
}

.form-line input[type='checkbox'] {
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
}
.form-line label {
  font-weight: 400;
  font-size: 14px;
  color: #888888;
}

.small-line {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.small-line span {
  color: #1F9E72;
  cursor: pointer;
}

.forget {
  width: 100%;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  cursor: pointer;
}
/* 表单 end */

/* tab start */
.form-tab {
  margin-top: 58px;
  display: flex;
  position: relative;
}

.tab {
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  position: relative;
  transition: all 0.3s ease;
}
.tab:hover {
  color: #1F9E72;
}
.tab.active {
  color: #1F9E72;
}

.slider {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 96px;
  height: 2px;
  background: #1F9E72;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
/* tab end */