.login-container {
  display: flex;
  justify-content: space-between;
}
.login-container .form-wrapper {
  width: 55%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .login-container .form-wrapper {
    width: 100%;
  }
}
.login-container .form-wrapper .main-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 60px;
}
.login-container .info-wrapper {
  color: white;
  width: 45%;
  height: 100vh;
  background-color: #033AAF;
  background-image: url("/assets/img/svg/login-pattern.svg");
  background-size: contain;
  background-position-x: 100%;
  background-repeat: no-repeat;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
}
@media (max-width: 768px) {
  .login-container .info-wrapper {
    display: none;
  }
}
.login-container .info-wrapper .logo {
  margin-bottom: 10px;
}
.login-container .info-wrapper .msg {
  font-size: 32px;
}
.login-container .info-wrapper .title {
  font-size: 46px;
  font-weight: bold;
}
.login-container .info-wrapper .desc {
  font-size: 16px;
  display: flex;
  margin-top: 30px;
  margin-bottom: 0;
}
.login-container .info-wrapper .desc:before {
  content: url("/assets/img/svg/login-line.svg");
  margin-right: 20px;
}
.login-container .info-wrapper .copyright {
  position: absolute;
  margin: 0;
  bottom: 40px;
  right: 40px;
}
