.loginPage_container {
/*  display: flex;*/
}

.imgBackground_section {
  /*background: url('../img/bg.jpg');*/
  background-color: #f6f6f6;

 
}

.form_section,
.imgBackground_section {
  width:100%;
    background-color: #f6f6f6;
}

.content_wrapper {
  background-color: #f6f6f6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.login_logo {
   /* width: 22.77vw;*/
    margin-bottom: 3.1vw;
    margin-top:0;
}

.login_logo img {
    width: 60%;
}

.welcome_text {
    font-size: 18px;
    line-height: 1.17;
    margin-bottom: 3.125vw;
    text-transform: uppercase;
    color: #212b36;
    letter-spacing: 0.82px;
}


.email_text {
  width: 27.22vw;
  font-size: 16px;
  line-height: 1.44;
  letter-spacing: 0.73px;
  color: #212b36;
  margin-bottom: 3.19vw;
}

form.loginForm input {
  display: block;
  width: 100%;
  border: none;
  margin: 0;
  margin-bottom: 1.8vw;
  padding: 1.31vw 1.45vw;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #212b36;
  box-sizing: border-box;
}

form.loginForm {
  display: block;
  width: 34.58vw;
}

.forgotPassword_wrapper form.loginForm input[type="submit"]{
  margin: 0;
}

form.loginForm input[type="submit"] {
    background-color: #1e3d54 ;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    padding: 1.11vw;
    letter-spacing: 1.26px;
    cursor: pointer;
}

form.loginForm input::placeholder {
    color: #212b36;
}


.misc_url a.forgot_password {
  color: #171717;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1.2;
}


@media(max-width: 768px){
  .imgBackground_section {
    width: 100%;
  }

  .form_section {
      width: 100%;
      max-width: 450px;
      position: absolute;
      /* top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); */
  }

  .content_wrapper {
      padding: 0;
      border-radius: 10px;
      background-color: #f6f6f6ee;
      width: 100vw;
      position: relative;
  }


  .login_logo {
      width: 180px;
      margin-bottom: 30px;
  }

  .welcome_text {
      margin-bottom: 30px;
  }

  .email_text {
    width: 95%;
    margin-bottom: 30px;
  }

  form.loginForm{
    width: 250px;
  }

  form.loginForm input {
    padding: 15px;
    margin-bottom: 15px;
  }

  form.loginForm input[type="submit"] {
      padding: 12.5px 15px;
  }
}
