body {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
}

.pb-login-container {
  width: 100%;
  height: 100%;
}

.pb-login-body {
  width: 600px;
  height: fit-content;
  /* border: 1px solid #e4e2e2; */
  box-shadow: 0 0 10px 0 #e4e2e2;
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  text-align: center;
  padding: 50px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.pb-login-logo {
  height: max-content;
  width: 100%;
  margin: 40px 0;
}

.pb-login-name {
  line-height: 44px;
  width: 348px;
  height: 44px;
  font-size: 14px;
  padding-left: 20px;
  border: 1px solid #dcdcdc66;
  border-radius: 6px;
  box-sizing: border-box;
}

.pb-login-password,
.pb-login-vcode {
  width: 348px;
  height: 44px;
  line-height: 44px;
  margin-top: 15px;
  font-size: 14px;
  padding-left: 20px;
  border: 1px solid #dcdcdc66;
  border-radius: 6px;
  box-sizing: border-box;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: color 111111s ease-out, background-color 111111s ease-out;
}

.pb-login-body .msg {
  text-align: left;
  color: red;
  height: 0px;
  line-height: 12px;
  margin-left: 156px;
  padding-top: 5px;
}

.pb-login-btn {
  width: 350px;
  height: 50px;
  margin: 0 auto;
  margin-top: 30px;
  line-height: 50px;
  font-size: 18px;
  background-color: #2898FF;
  color: #fff;
  cursor: pointer;
  border: none;
  text-align: center;
  padding: 0;
  border-radius: 6px;
}

.pb-login-btn.disabled {
  background-color: #dcdcdc;
  cursor: not-allowed;
}

.verify-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin: 15px auto 0;
  position: relative;
}

.verify-box>* {
  margin: 0;
}

.verify-box .pb-login-btn {
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  margin-left: 15px;
}

.verify-box .msg {
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: 33px;
}