body,html{
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-family: 'Poppins', sans-serif;
}
.container{
	width: 100%;
	height: 100%;
	margin: 0px;
	max-width: 100%;
	background-image: URL('/assets/images/bg-01.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#loginTitle{
	display: none;
	margin-bottom: 50px;
}

.loginCard{
	margin: 0px auto;
	max-width: 350px;
	position: relative;
	top: 200px;
	background-color: transparent;

	box-shadow: 0 0 30px 1px rgb(0 0 0 / 30%), 0 1px 3px rgb(0 0 0 / 30%)
}

.card-header{
	background-color:#e7edf7;
	color: #fff;
	padding:30px 10px;
}

.card-body, .card-footer{
	z-index: 2;
}

.card-footer{
	background-color: #efefef;
	border-radius: 0 0 7px 7px;
}

.card-footer a{
	color: #3a92dd;
	font-size: 0.9rem;
}

.loginCard:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 0;
	border-radius: 7px;
}

label{
	font-size: 0.8rem;
	color: #999;
	font-weight: 500 !important;
}

input.form-control{
	border: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0px;
}

input.form-control:focus{
	border-bottom: 2px solid #224c90;
}


@media only screen and (max-width: 768px) {

	.container{
		padding: 0px;
	}

	#loginTitle{
		display: block;
	}

	.loginCard{
		margin: 0px;
		width: 100vw;
		height: 100vh;
		max-width: inherit;
		top: 0px;
	}

	.loginCard .card-header{
		height: 40%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.loginCard .card-header:after{
		content: '';
		width: 100%;
		height: 32%;
		position: absolute;
		left: 0px;
		bottom:-5px;
		background-image: URL('/assets/images/login_wave.svg');
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.loginCard .card-body{
		padding:1.25rem 2.8rem;
	}

	.loginCard .card-body form label{
		display: none;
	}

	.loginCard .card-body form .remembermeInput label{
		display: block;
		padding: 5px;
	}

	.loginCard .card-body form input{
		border: 1px solid #dedede;
		border-radius: 10px;
		padding: 10px 15px !important;
		height: inherit;
		font-size: 0.9rem;
	}

	.loginCard #btnSubmitLogin{
		width: 90%;
		padding: 10px;
		margin:0px auto;
		border-radius: 10px;
	}
}