@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body,html{
	height: 100%;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}
.main-container{
	width: 100%;
	max-width: 100%;
	display: flex;
	position: relative;
	margin: 0;
	padding: 0;
}

.left-div{
	width: 50%;
	position: relative;
	margin: 0;
	padding: 0;

}


.center-img{
	text-align: center;
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	display: table;
}

h2{
	font-size: 35px;
	text-align: center;
}

small{
	font-size: 20px;
}

input{
	width: 100%;
	padding: 1.5vh;
	margin-top: 1.5vh;
	margin-bottom: 1.5vh;
	background-color: #efefef;
	border-radius: 8px;
	border: none;
	line-height: 2;
	font-size: 16px;

}

.login-btn{
	background-color: #0d6efd;
	color: white;
	border-radius: 2vh;
	padding: 1.7vh;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 10vh;
	border:none;
	cursor: pointer;
}

.login-btn:hover{
	background-color: #316dc4;
	transition: 0.5s;
	border-radius: 10vh;
}

*:focus{	
		transition: 0.5s;
 outline: none;
 box-shadow: 0px 0px 5px 0px blue;
 border-radius: 8px;
}

.login-container{
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.right-div{
	width: 50%;
	
  height:100vh;
background-color: #030000;
background-image: url('https://st2.depositphotos.com/33292058/i/600/depositphotos_431533404-stock-photo-empty-shopping-grocery-cart-mobile.jpg');
background-repeat: no-repeat;
background-position: top center;
background-size: cover;

}

.login-logo{
	text-align: center;
	margin-top: 12%;

}

.login-logo img{
	height: 40vh;
}

.social-links{
	margin-top: 1vh;
	text-align: center;
}

.social-links i{
	margin: 10px;
	color: #474646;
}

.right-footer{
	
	margin-top: 0vh;
	bottom: 10px;
	text-align: center;
	
}

.footer{
	text-align: center;
	font-size: 14px;
	margin-top: 10vh;
}

a{
	text-decoration: none;
	font-weight: bold;
}




@media (max-width: 1080px){
	.left-div{
		width: 60%;
	}

	.login-container{
position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-30%, -50%);
}

	.right-div{
		width: 40%;
	}
}


@media(min-width: 768px){
	.footer{
		display: none;
	}
}

@media (max-width: 768px){


	.left-div{
		width: 99%;
	}

	small{
	font-size: 16px;
}

	.login-container{
	position: relative;
  	width: 80%;
  	left: 30%;
}

	.right-div{
		display: none;
	}

	.footer{
		display: block;
	}
}