.login_wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f7fd;
}
.login_body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8rem;
}
.login_form {
  width: 100%;
  max-width: 96.4rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 2rem;
  background-color: #fff;
}
.login_form .img {
  border-radius: 1.6rem;
}
.login_form .form {
  padding: 12.655602%;
}
.login_form .form form {
  margin-top: 4.2rem;
}
.login_form .form .field_wrap + .field_wrap {
  margin-top: 2.5rem;
}
.login_form .form label {
  color: #344563;
  font-weight: 600;
  display: block;
  max-width: max-content;
  cursor: pointer;
  margin-bottom: 6px;
}
.login_form .form .field_input {
  gap: 2px;
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 100px;
  border: 1px solid #e9edf0;
  transition: all 0.3s;
  padding: 2px;
  overflow: hidden;
}
.login_form .form .field_input:focus-within {
  border-color: var(--primary);
}
.login_form .form .field_input .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: #f8f7fd;
}
.login_form .form .field_input .icon img {
  display: block;
  width: 45%;
  height: 45%;
  object-fit: contain;
}
.login_form .form .field_input input {
  width: 100%;
  display: block;
  background-color: transparent;
  color: var(--title);
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0 1.6rem;
  border-radius: 100px;
}
.login_form .form .field_input input::placeholder {
  color: #717d92;
}
.login_form .form .btn {
  width: 100%;
  margin-top: 3.2rem;
  line-height: 4.6rem;
  font-size: 1.6rem;
  border-radius: 0.9rem;
}
.login_form .form .tip {
  color: #666970;
  text-align: center;
  margin-top: 1.2rem;
}
.login_form .form .tip a,
.login_form .form .tip span {
  cursor: pointer;
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.login_form .form .tip a:hover,
.login_form .form .tip span:hover {
  text-decoration-color: transparent;
}
.login_form .logo {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 22.2rem;
}
.login_form .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.login_form .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
.login_footer {
  font-size: 1.4rem;
  padding: 1.5rem 2.8rem;
}
.login_footer .copyright {
  color: rgba(36, 36, 36, 0.85);
}
.login_footer ul {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.login_footer li {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
.login_footer li:last-child::after {
  display: none;
}
.login_footer li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  background-color: #cbcfd1;
}
.login_footer a {
  display: block;
  transition: all 0.3s;
  color: rgba(22, 22, 22, 0.68);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.login_footer a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
@media screen and (max-width: 768px) {
  .login_body {
    padding: 2rem;
  }
  .login_form {
    grid-template-columns: 1fr;
    border-radius: 1rem;
  }
  .login_form .img {
    display: none;
  }
  .login_form .form {
    padding: 3rem 2.4rem;
  }
  .login_form .form form {
    margin-top: 2.4rem;
  }
  .login_form .form .field_wrap + .field_wrap {
    margin-top: 1.6rem;
  }
  .login_form .form label {
    font-size: 1.4rem;
  }
  .login_form .form .btn {
    margin-top: 2.4rem;
  }
  .login_footer {
    padding: 1.6rem 2rem;
    text-align: center;
  }
  .login_footer .flex {
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
  }
  .login_footer ul {
    justify-content: center;
  }
  .login_footer li {
    gap: 0.8rem;
  }
  .login_footer li::after {
    height: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .login_body {
    padding: 1.6rem;
  }
  .login_form .form {
    padding: 2.4rem 1.6rem;
  }
  .login_form .logo {
    max-width: 16rem;
  }
  .login_footer {
    font-size: 1.3rem;
    padding: 1.4rem 1.6rem;
  }
  .login_footer ul {
    gap: 0.8rem;
  }
}
