  body {
    margin: 0;
    padding: 0;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F2F2F2;
    font-family: Segoe UI, sans-serif;
    display:flex;
    justify-content:flex-end;
  }
.main-wrapper {
    display: table;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    width:100%;
    padding-left: 20px;
    padding-right: 20px;
}

.left-image {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
    padding-top: 95px;
    text-align:right;
}
   a {
    text-decoration: none;
    color: darkblue;
  }
.login-container {
    padding: 20px;
    border: 1px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    background-color: white;
    display: table-cell;
    width: 20%;
    vertical-align: middle;
}

  .login-container h2 {
    margin-top: 0;
    text-align: center;
    color: #000;
  }
  .login-form label {
    color: #000;
    margin-left: 20px;
  }
  .login-forminput {
    width: 80%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: black;
    margin-left: 20px;
  }
  .login-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #000066;
    color: #fff;
    margin-left: auto;
    height: 50PX;
    cursor: pointer;
    font-size: larger;
    margin-right: auto;
    max-width: 250px;
    display: block;
}
  .contact {
    text-align: center;
    color: #1D1D1D;
    margin-top: 30px;
    font-size: 14px;
  }
  .forgot-password {
    text-align: center;
    margin-top: 10px;
  }
  .logo {
    width: 100%;
    max-width: 500px;
    margin-right: 150px;
    top: 50%;
    transform: translateY(-50%);
}
  img{
      max-width:100%;
  }
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
}
li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}
  
@media only screen and (max-width:767px){ 
     .logo {
        width: 100%;
        max-width: 270px;
        margin-right: 35px;
    }
    .login-container, .left-image {
        display:block;
        width:100%;
    }
    .left-image {
        text-align:center;
    }
      .footer {
        position: relative;
    }
}
  @media only screen and (max-width:640px){
      
      body {
        flex-direction: column;
        padding: 20px 20px;
    }
    .main-wrapper {
    padding-left: 0;
}
    
     .login-container{
         margin-right: 0;
         width: unset;
     } 
     .logo {
        width: auto;
        margin-right: 0;
    }
    
    
  }