img.login-logo{
  width: 302px;
}

/* IEにてメッセージ欄、入力フォームともに画面上部へ寄う対策*/
.l-Content--main{
    display: flex;
}

.l-Content {
  background-image: url('/img/login-bg-849e55e8c9b1fbb378f85cead3b62972.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.p-main--login {
  justify-content: center;
  padding-bottom: 50px;
}

input[type=text].form-control,
input[type=password].form-control {
  height: 50px;
  border-radius: 6px;
  background-color: #CCECFB;
  border: 0;
}

.login-label {
  font-size: 16px;
  font-weight: 500;
}

.login-button {
  width: 100%;
  background-color: #1362AE;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border-radius: 6px;
  height: 50px;
}

.login-button:hover {
  background-color: rgba(19, 98, 174, 0.9);
  color: #fff;
}

.login-note {
  font-size: 14px;
  line-height: 1.5em;
}

.login-card {
  position: absolute;
  right: calc(50% + 250px);
  max-width: 450px;
  width: calc(50% - 330px);
  margin-right: 50px;
}

.login-card__container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
}

.login-card__title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
}

.login-card__text {
  font-size: 14px;
  line-height: 1.5em;
}


@media (max-width: 767px) {
  .l-Content--main{
    flex-direction: ;
  }
  .p-main{
    padding: 0px !important;
  }
  .p-main--login {
    justify-content: left;
    margin: 30px 15px 0px;
  }

  .login-card {
    position: static;
    width: 100%;
  }

  .login-card__container--mobile {
    margin-top: 30px;
    display: block !important;
  }

  .login-card__container--laptop {
    display: none;
  }
}

@media (min-width: 768px) {
  .login-card__container--mobile {
    display: none;
  }
}