 body {
     margin: 0px;
 }

 .login_page{
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
     padding: 20px;
     box-sizing: border-box;
 }

 .login_page_container {
     position: relative;
     width: 100%;
     display: grid;
     grid-template-columns: 350px auto;
     /*background-color: black;*/
     height: 100%;
          box-shadow: 0 0 30px -5px black;
    /*border-radius: 8px;*/
     overflow: hidden;
     /*background-image:linear-gradient(to bottom right, #1399cc,#004084);*/

 }

 .login_block{
     position: relative;
     width: 100%;
     display: grid;
     grid-template-columns: auto;
     justify-items: center;
     align-content: center;
     background-color: #171d3c;
     height: auto;
     font-family: 'Lato', sans-serif;
     box-shadow: 0 0 30px -5px black;
     overflow: hidden;
     text-align: center;
 }


  .image_block {
    position: relative;
    width: 100%;
    background-color: #101642;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 }

 .shadow{
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 20%;
    background-image:linear-gradient(to right, #171d3c 1% ,transparent,transparent);

 }

 .company_logo{
    display: block;
    max-width: 90%;
 }

.login {
     font-size: 16px;
     margin: 10px 0px;
     color: white;
 }

 .login_form_container {
     position: relative;
     width: 85%;
     margin: 10px auto;
 }

.login_form {
     width:100%;
     margin-bottom: 50px;

 }

 .login_form .input_container {
     position: relative;
     width: 100%;
     margin: 20px 0px;
     /*            border: 1px solid black;*/
     border-radius: 5px;
      box-shadow: 0 0 15px -5px grey;
     overflow: hidden;

 }

 .login_form .input_icon {
     position: absolute;
     display: flex;
     justify-content: center;
     align-items: center;
     width: 45px;
     height: 45px;
     font-size: 16px;
     /*background-color: #333;*/
     border: none !important;
     outline: 0 !important;
     color:  #171d3c;

 }

 .login_form input,select {
     width: 100%;
     height: 45px;
     padding-left: 50px;
     border: none;
     box-sizing: border-box;

 }

 .login_button {
     width: 80%;
     background-color: #d71e26;  
     color: white;
     border: none;  
     border-radius: 4px;
     height: 45px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .login_button:hover {
     background-color: #93181d;
     /*color: #999;   */
 }

 .customer_care_title{
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 500;
 }

 .customer_care_email{
    position: relative;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
 }

 .customer_care_no{
    position: relative;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
 }

 @media(max-width: 800px){
     .login_page{
        height: auto;
        padding: 10px;
     }
    .login_page_container {
        grid-template-columns: 100%;
        height: auto;
    }
    .login_block{
        padding-bottom: 20px;
    }
    .company_logo{
        max-width: 80%;
    }
    .login_form{
        margin-bottom: 0px;
    }
     .image_block {
        height: 250px;
     }
     .shadow{
        width: 100%;
        height: 20%;
        background-image:linear-gradient(to bottom, #171d3c 20% ,transparent,transparent);
     }
 }


