body {
  background-color: #f6f6f6;
}
.login_section {
  padding: 80px 0;
}
.login_section .login_swiper {
  max-width: 52.7777%;
  overflow: hidden;
  position: relative;
}
.login_section .login_swiper .img {
  height: 100%;
}
.login_section .login_swiper .swiper-pagination {
  text-align: right;
  padding-right: 27.5px;
}
.login_section .login_swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 1;
}
.login_section .login_swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme_color);
}
.login_section .login_box {
  flex: 1;
  max-width: 33.4127%;
}
.login_section .login_box .icon {
  display: block;
  content: '';
  width: 64px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.login_section .login_box .icon i {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
}
.login_section .login_box .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  margin: 32px 0;
  text-align: center;
}
.login_section .login_box .desc {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 32px;
}
.login_section .login_box .contact {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
.login_section form {
  display: grid;
  gap: 24px;
}
.login_section form span {
  width: 100%;
}
.login_section form input {
  width: 100%;
  border-bottom: 1px solid #7b7b7b;
  background-color: transparent;
  color: #575050CF;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  padding: 10px 2.5px 9px;
}
.login_section form a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  margin-top: 10px;
  float: right;
  transition: all 0.3s;
}
.login_section form a:hover {
  text-decoration: none;
}
.login_section form input[type=checkbox] {
  width: 22px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border: 1px solid #868685;
  border-radius: 3px;
  padding: 0;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login_section form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/Checkboxes.svg) no-repeat center / 10.5px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  opacity: 0;
}
.login_section form input[type=checkbox]:checked::after {
  opacity: 1;
}
.login_section form input[type=checkbox] ~ span {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  vertical-align: top;
  cursor: pointer;
  margin-left: 10px;
}
.login_section form input[type=submit] {
  display: none;
}
.login_section form .psdBtn {
  margin: 8px 0 32px;
}

.login_box .success, .login_box .error {
  padding: 8px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 1rem;
  border: 1px solid green;
}
.login_box .error {
  border-color: red;
}