#login {
  // width: calc(85vh + 400px + 45px);
  width: 85%;
  height: 78vh;
  margin: 0 auto;
  display: flex;

  .banner {
    width: 60%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;

    &::after{
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-image: url("../../imgs/bg_login.png");
      background-size: 60%;
      background-repeat: no-repeat;
      background-position: right center;
      position: absolute;
      top: 0;
      z-index: -1;
    }

    &__promotion {
      &--top {
        color: #000;
        font-size: 36px;
        font-weight: 400;
      }
      &--center {
        font-size: 25px;
      }
      &--bottom {
        color: #073396;
        font-size: 36px;
        font-weight: 400;
      }
    }
    &__regis {
      margin-top: 40px;
      &--text {
        font-size: 22px;
      }
      &--button {
        color: #fff;
        background-color: #073396;
        text-align: center;
        padding: 12px 2em;
        margin-top: 10px;
				border-radius: 20em;
				display: inline-block;
				font-size: $font-size-normal;
				font-weight: bold;

        img {
          margin-left: 10px;
        }
      }
    }
  }
  .login {
    margin-left: 5%;
    width: 35%;
    display: flex;
    flex-flow: column;
    justify-content: center;

    &__title {
      font-size: 25px;
      font-weight: 400;
      color: #073396;
      img {
        height: 23px;
        margin-right: 7px;
        margin-bottom: 5px;
      }
    }

    &__form {
      position: relative;

      &--title {
        font-weight: 400;
        margin: 20px 0 10px;
      }
      input {
        background: #fff;
        border-radius: 5px;
        width: 100%;
        padding: 0.5em 1em;
        font-size: 18px;
        border: 1px solid #d9d9d9;
      }
      input[name="useremail"] {
        background-image: url(../../imgs/icon_email.svg);
        padding-right: 35px;
        background-position: right 10px center;
        background-repeat: no-repeat;
      }
      input[name="password"] {
        // background: url(../../imgs/icon_password.svg) no-repeat;
        padding-right: 35px;
        background-position: right 10px center;
      }
      input:focus,
      input.valid {
        border-color: #073396;
      }
      input.error {
        border-color: #f33300;
      }
      label.error {
        position: absolute;
        font-weight: 100;
        font-size: 11px;
        color: #f33300;
        width: 100%;
        text-align: right;
        left: 0;
        bottom: 0;
        margin-bottom: -18px;
      }
    }
    &__control {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;

      input[type="submit"] {
        border-radius: 30px;
        background: #00d748;
        padding: 12px 2em;
        color: #fff;
        font-size: $font-size-normal;
				font-weight: bold;
        border: 0;
      }
      a {
        text-decoration: underline;
      }
    }
    &__noacc {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #d9d9d9;
      border-width: 1px 0;
      padding: 30px 0;
      margin-top: 30px;

      &--text {
        color: #073396;
        font-weight: 400;
        font-size: 23px;
      }
      &--botton {
        color: #073396;
        display: inline-block;
        border-radius: 30px;
        border: 2px solid #073396;
        padding: 10px 2em;
        font-size: $font-size-normal;
				font-weight: bold;
      }
    }

    #showpassword {
      position: absolute;
      bottom: 16px;
      right: 10px;
      cursor: pointer;
    }
  }

  @media only screen and (max-width: 992px) {
    display: block;
    height: unset;
    width: 100%;
    padding: 0 7%;

    .banner {
      width: 100%;
      height: 35vh;
      background-size: contain;
      background-position: right bottom;
      display: block;
      &::after{
        opacity: 0.2;
      }

      &__promotion {
        margin-top: 40px;
        &--top {
          font-size: 33px;
        }
        &--center {
          font-size: 22px;
        }
        &--bottom {
          font-size: 33px;
        }
      }
      &__regis {
        &--text {
          font-size: 18px;
        }
        &--toform {
          border-radius: 30px;
          background: #00d748;
          padding: 12px 1.7em;
          color: #fff;
					font-size: $font-size-normal;
					font-weight: bold;
          display: inline-block;
          cursor: pointer;
          margin-top: 15px;
        }
      }
    }
    .login {
      width: 100%;
      margin: 0;
      margin-top: 40px;

      &__control {
        flex-flow: column;
        input[type="submit"] {
          order: 2;
          width: 100%;
          margin-top: 30px;
        }
      }
      &__noacc {
        flex-flow: column;
        &--botton {
          width: 100%;
          text-align: center;
          margin-top: 30px;
        }
      }
    }
  }

  @media only screen and (width: 1024px) {
    .login {
      width: 35%;
    }
  }

  @media only screen and (min-width: 400px) and (max-width: 992px) {
  }
}
