@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');


* {
	font-family: 'Poppins', sans-serif;
}


.wrapper{
	display: flex;
	height:auto;
	/*align-items:center;*/
	}

.left-col{
	width: 100%;
	max-width: 70%;
	/*display: flex;*/
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rht-col{
	width: 100%;
	max-width: 30%;
	display: grid;
	align-items: center;
	
}

.box{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 0;
	
    background:#fff  ;
	
	border-radius: 25px;
}

.login-box-body{
	padding: 15px;
	border-radius: 15px;
	background:#fff;
}
.footerImg{
	position:relative;
	bottom:0;
}

@media (max-width:1023px){
	.wrapper{
		flex-direction: column;
	}
	
	.left-col,
	.rht-col{
		max-width: 100%;
	}
	
	.login-box-body{padding-top: 0;}
	.left-col{padding-bottom: 0;}
	
	.box.box-solid{
		margin: 15px auto;
		max-width: calc(100% - 25px);
	}
}
@media (max-width:991px){
	.footerImg img{
	width:50%;
	}

	
	
	


}
