*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-size: 14px;
	  font-family: "Poppins", serif;
/*background: linear-gradient(45deg, #0ef8dd, #c30d58);*/
    height: 100vh;	  
}
a{
	text-decoration: none;
		color: #898989;
}
.form-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.form-top .top-left h4{
	color:white ;
	font-size: 21px;
}
.form-top .top-left p{
	color: white;
	font-size: 14px;
}
.form-top .top-right{
	background: #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 50%;
    line-height: 24px;
    color: #0501d2;
}
.grid{
	/*display: grid;
	grid-template-columns: repeat(2, 1fr);
*/}
	#main-login-form-container{
		border: 1px solid #898989;
	max-width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
/*	    padding: 20px 30px;*/
    border-radius: 10px;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            overflow: hidden;
	}
.login-form{
	position: relative;
		padding: 25px 30px;

}
.login-form .grid .left{
	position: relative;
}
.input-section span{
color: #898989;
}
.login-form .grid .left .img-section{
	display: none;
}
.login-form:before {
	position: absolute;
	top: -117px;
	left: 0;
	background-image: url(../../Assets/images/back.jpeg);
	content: "";
	height: 100%;
	width: 100%;
	z-index: -9;
	background-size: cover;
	background-position: top;
	transform: rotate(0deg);
}
.input-section{
	display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #c3bfbf;
    border-radius: 4px;
       padding: .375rem .75rem;
}
.input-section input{
	border: none;
	width: 100%;
	box-shadow: none;
	outline: none;
}
.forget{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hr{
	width: 100%;
	height: 1px;
	background: #cdcccc;
	text-align: center;
}
.hr span{
	    position: relative;
    top: -13px;
    background: white;
    padding: 0 8px;
}
.login-bottom-area button{
	display: block;
	border: 1px solid #cdcccc;
}
.login-bottom-area button a{
	text-decoration: none;
}
.logo{
	text-align: center;
}
.top-right .form-group label{
	margin-bottom: 3px;
	color: #898989;
}
.input-section .fa{
	color: #898989;
}
.input-section .fa-check{
	width: 15px;
    height: 15px;
    background: #0501d2;
    color: white;
    border-radius: 50%;
    padding: 7px;
    line-height: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
}
.forget-right span{
	color: #898989;
}
.forget-left{
	display: flex;
    gap: 6px;
    align-items: center;
}
.login-btn button{
	font-size: 14px;
	background: #0501d2;
	border: none;
    padding: 7px 0;
}
.login-bottom-area button{
	font-size: 14px;
	transition: 0.5s;
}
.login-bottom-area button a{
	color: blue;
}
.login-bottom-area button:hover{
	background: #0501d2;
	border: none;
	color: white;
}
.login-bottom-area button:hover a{
	color: white;
}