.outer-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 800px;
  background: url(../images/login-bg.png) no-repeat center/cover;
}

.header-wrap {
    position: absolute;
    top: 0;
    right: 46px;
    height: 122px;
    width: 168px;
    padding-top: 30px;
    padding-right: 8px;
    text-align: right;
}

.language-wrap {
    border-right: 1px solid #ccc;
}

.language-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 134px;
  right: 0;
  width: 140px;
  height: 80px;
  background: url(../images/dot_bg.svg) no-repeat center;
}

.login-form {
  width: auto;
  height: auto;
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  margin: 0 auto;
  -moz-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
}
.login-form h2 {
  margin: 12px 0 24px 4px;
}
.login-form input {
  margin-bottom: 12px;
  border-radius: 24px;
  font-size: 17px;
}
.login-form button {
  width: 100%;
  font-size: 17px;
  border-radius: 22px;
  margin: 36px 0 12px 0;
  height: 44px;
  line-height: 42px;
}
.login-form .decoration-line {
  border-bottom: 1px solid #ddd;
  text-align: center;
  margin: 0 4px;
}
.login-form .decoration-line span {
  background-color: #fff;
  width: 40px;
  padding: 8px 8px 0 8px;
}
.login-form .social-media-icons {
  width: 100%;
  margin: 24px auto 12px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form .social-media-icons li {
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #9d9d9d;
  width: calc(50% - 6px);
  cursor: pointer;
}
.login-form .social-media-icons li:hover {
  background-color: #fafafa;
}
.login-form .social-media-icons li div {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form .social-media-icons li div .social-media-img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
.login-form .social-media-icons li div p {
  font-size: 13px;
  color: #535353;
}
.login-form .verify-code {
  display: flex;
  align-items: center;
}
.login-form .verify-code input {
  width: 56%;
  margin-right: 10px;
}
.login-form .verify-code div {
  width: 40%;
  height: 44px;
  margin-bottom: 12px;
}

.login-banner {
    width: 100%;
    height: 0;
    padding-bottom: 59.7%;
    background-color: #fff;
    -moz-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
    -o-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.12);
    position: relative; 
    overflow: hidden;   
}

.carousel {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}

.carousel-inner {
    height: 100%; 
}

.carousel-item {
    height: 100%; 
}

.carousel-item img {
    width: 100%;     
    height: 100%;    
    object-fit: fill;
}

.footer-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.toggle-password {
  float: right;
  cursor: pointer;
  width: 40px;
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
  margin-top: -47px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .login-form {
    max-width: 382px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .login-banner {
    width: 100%;
    height: 0;
    padding-bottom: 59.7%;
  }
}
@media (max-width: 1199.98px) {
  .login-banner {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .language-wrap::before {
    display: none;
  }
  .login-form .social-media-icons li div .social-media-img {
    width: 22px;
    height: 22px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .mobile-logo-wrap {
    width: 100%;
    max-width: 382px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=login.css.map */