*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow: hidden;
}

.row{
    display: flex;
    justify-content: center;
}

.login-left{
    margin: 25% auto;
    width: 40%;   
 }

.image-left{
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.712),  rgba(255, 255, 255, 0.548)) 
    ,url("/control/assets/img/login3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.img-right img{
    width: 100%;
    height: 100vh;
}



.login-left h1{
    margin: 50px 60px 30px;
    text-transform: uppercase;
}

.email-input, .password-input{
    position: relative;
    width: 300px!important;
    box-sizing: border-box;
    overflow: hidden;
}

.input-field{
    width: 100%;
   padding: 13px;
     margin: 20px 0px ;
    border: 1px solid #05aefd;
    text-align: center;
}

.input-field-icon{
    position: absolute;
    top: 35px;
    left: 10px;
    color: teal;
    font-size: 18px;

}

.input-field-icon2{
    position: absolute;
    top: 35px;
    right: 10px;
    color: teal;
    font-size: 18px;
    cursor: pointer;
}

.input-field-icon3{
    position: absolute;
    top: 35px;
    right: 10px;
    color: teal;
    font-size: 18px;
    cursor: pointer;
	
}

.btn{
    border: 2px solid #05aefd;
    margin: 50px 80px;
    padding: 10px 50px;
    font-weight: bolder;
}
.btn:hover{
    background-color: #05aefd;
    transition: .4s;
}

.forgot-pass{
    margin-top: 30px;
    font-size: 17px;
    cursor: pointer;
}

.forgot-pass a{
    text-decoration:none;
}

.forgot-pass a:hover{
    text-decoration: underline;
}

.footer{
    margin: -40px auto 0px;
    width: 45%;
}

.footer a{
    text-decoration: none;
    color: #05aefd;
}

.footer a:hover{
    text-decoration: underline;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 500px){
    .image-left{
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.712),  rgba(255, 255, 255, 0.548)) 
        ,url("/control/assets/img/mobile-login.jpg");
        background-repeat: no-repeat;
        background-size: contain;
        height: 100vh; 
    }
    .login-left{
        width: 75%;   
     }

     .img-right img{
       display: none;
    }
    
   
    .footer{
        width: 65%;
    }
}

@media only screen and (min-width: 500px) and (max-width: 767px){
    .image-left{
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.712),  rgba(255, 255, 255, 0.548)) 
        ,url("/control/assets/img/mobile-login.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh; 
    }

    .img-right img{
        display: none;
     }
     .footer{
        margin: -60px auto 0px;
        width: 45%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .image-left{
        background-size: cover;   
    }

    .img-right img{
        display: none;
     }

     .login-left{
        margin: 15% auto;
        width: 40%;   
     }

}

@media only screen and (min-width: 992px) and (max-width: 1023px){
    .image-left{
        background-size: contain;   
        height: 100vh;
    }

     .login-left{
        width: 70%;   
     }
     
     .img-right img{
        width: auto;
        height: 100vh;
    }

     .footer{
        width: 85%;
    }

}

@media only screen and (min-width: 1024px) and (max-width: 1365px){
    .body{
        overflow: hidden;
    }
    .image-left{
        background-size: contain;
    }

     .login-left{
        width: 70%;   
     }
     
     .img-right img{
        width: auto;
    }

     .footer{
        width: 85%;
    }

}
