.login {
  position: fixed;
  left: 0;
  top: 61px;
  width: 100%;
  height: calc(100% - 61px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(178deg, #abdcff, #0095ff);
}

.login_box {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1300px;
}
#model_box {
  width: calc(100% - 500px);
  height: calc(100% - 100px);
  position: relative;
}

.form_container {
  width: 80%;
  max-width: 350px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 106px 42px rgb(0 0 0 / 10%), 0px 59px 36px rgb(0 0 0 / 0%),
    0px 26px 26px rgb(0 0 0 / 8%), 0px 7px 15px rgb(0 0 0 / 23%),
    0px 0px 0px rgb(0 0 0 / 20%);
  border-radius: 11px;
  font-family: "Inter", sans-serif;
}

.logo_container {
  box-sizing: border-box;
  width: 55px;
  height: 55px;
  background-image: url(/static/img/logo/logo.png);
  border: 1px solid #f7f7f8;
  filter: drop-shadow(0px 0.5px 0.5px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  border-radius: 11px;
  background-size: 45px;
  background-repeat: no-repeat;
  background-position: 5px 6px;
}

.title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
}

.subtitle {
  font-size: 0.725rem;
  max-width: 80%;
  text-align: center;
  line-height: 1.1rem;
  color: #8b8e98;
}

.input_container {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input_label {
  font-size: 0.75rem;
  color: #8b8e98;
  font-weight: 600;
}

.input_field {
  height: 40px;
  padding: 0 0 0 40px;
  border-radius: 7px;
  outline: none;
  border: 1px solid #e5e5e5;
  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_field:focus {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #242424;
  background-color: transparent;
}

.sign-in_btn {
  width: 100%;
  height: 40px;
  border: 0;
  background: #115dfc;
  border-radius: 7px;
  outline: none;
  color: #ffffff;
  cursor: pointer;
}

.input_container_switch {
  display: flex;
  align-items: flex-end;
  color: #115dfc;
  font-size: 0.75rem;
  font-weight: 600;
}

.pwd_login {
  display: contents;
  /* display: none; */
}
.phone_login {
  /* display: contents; */
  display: none;
}
.qrcode_login {
  /* display: contents; */
  display: none;
}
.security-verification .input_field:focus {
  border: 1px solid #e5e5e5;
  box-shadow: none;
  background-color: aliceblue;
}

.security-verification svg {
  display: none;
}

#form_container {
  position: relative;
}

.security-verification-botton {
  padding-right: 40px;
}

/*.verification{*/
/*    width: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
.third-login {
  width: 100%;
}
.third-login-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.third-login-title p {
  width: calc(50% - 45px);
  height: 3px;
  border-bottom: 1px solid #eee;
}
.third-login-title span {
  color: #bdbdbd;
}

.third-login-logo li {
  margin: 0 5px;
  cursor: pointer;
}
#qrcode {
  width: 150px;
  height: 150px;
  background-size: 144px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #dfdfdf;
}

@media (max-width: 950px) {
  #model_box {
    display: none;
  }
}

.icon {
  width: 20px;
  position: absolute;
  z-index: 99;
  left: 12px;
  bottom: 9px;
}
