@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
	font-family: 'Inter', sans-serif;
}

*{
	margin: 0;
	padding: 0;
}

.container{
	margin: auto;
	padding: 0;
}

.left-image{
    background-image: url(/assets/imgs/background-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.left-image .logo{
    width: 250px;
    margin: auto;
}
.login-section .heading{
    text-align: center;
    padding-bottom: 15px;
}

.login-section .heading h3{
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 30px;
}

.login-section .heading span{
color: #4C4C4C;
font-size: 16px;
}

.left-logo{
    padding-left: 0;
}

.login-section{
    width: 60%;
    margin: auto;
    margin-top: 15%;
}

.login-section label{
font-weight: 500;
}

.login-section .form-control{
background-color: #F5F5F5;
border: none;
border-radius: 6px;
}

.login-section .form-control:focus{
box-shadow: none;
border: 1px solid #74A805;
}

.forgot{
    text-align: right;
}

.forgot small{
text-align: right;
border-bottom: 1px solid #000;
}

.btn-login{
width: 50%;
margin: auto;
padding-top: 15px;
}

.btn-login .btn-success {
border-radius: 50px;
background-color: #74A805;
    font-weight: 500;
}

@media(max-width:768px){
    .login-section {
    margin-top: 10%;
    margin-bottom: 10%;
    }
}