@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

::selection{
	color: #fff;
	background-color:#86C457;
}
html{
	position: relative;
	min-height: 100%;
	overflow-x: hidden !important;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: .9rem;
	overflow-x: hidden !important; 
    background-color:#fff;
    background-image: url('../images/bg_login.svg');
    background-size:cover;
    background-repeat: no-repeat;
}

.login-parent{
    display: table;
    min-width:100%;
}
.login-child{
	display:table-cell;
	vertical-align: middle;
}
.login-content{
	background-color:#fff;
	border-radius: 15px;
	box-shadow: 0px  25px 45px rgba(0,0,0,0.08);
	max-width:990px;
	width:100%;
	margin:15px auto;
}
.login-form{
	padding:55px 15px;
}
.login-img{
	width:80%;
	display:block;
	margin:25px auto;
}
.login-title{
	font-weight: 700;
	text-transform: uppercase;
	color:#006C3A;
	padding-bottom:20px;
	text-align:center;
	font-size:1rem
}
.login-form .error{
	background-color:#FFF2F2;
	color:#FF6464;
	padding:8px;
	border-radius: 6px;
	text-align:center;
}
.login-form label{
	margin-bottom:5px;
	font-weight: 600;
	color:#466859;
}
.login-form .input-wrapper{
	position:relative;
	padding-bottom:20px;
}
.login-form .form-control{
	padding-right:40px;
}
.login-form .feather-ic{
	position:absolute;
	right:10px;
	top:5px;
	color:#86C457;
}
.input-wrapper.input-error .form-control{
	border-color:#FF6464;
}
.input-wrapper.input-error .feather-ic{
	color:#FF6464;
}


.btn-green{
	padding-left:30px;
	padding-right:30px;
	background-color: #86C457;
	color:#fff;
	box-shadow: 0px 15px 15px -10px rgba(134,196,87,0.8);
	transition:linear 0.3s all;
	border-radius: 30px;
}
.btn-green:focus,
.btn-green:active,
.btn-green:hover{
	color:#fff;
}
.btn-green:hover{
	box-shadow: none;
}
/* CUSTOM BOOTSTRAP STYLING */
.btn{
	font-size:.9rem;
}
.form-control{
	font-size:.9rem;
}
.btn-green:focus{
	box-shadow: inherit;
}
.form-control:focus{
	box-shadow: none;
	border-color:#86C457;
}

@media (max-width:991px){
	.login-content{
		width:95%;
	}
	.login-form {
		padding: 25px 15px;
	}
	.login-form > img{
		width:30% !important
	}
	.login-img{
		display: none;
	}
}
@media (max-height:320px){
	.login-form > img{
		padding-bottom:10px !important;
		width:20% !important
	}
	.login-title{
		padding-bottom:5px;
		font-size: .8rem;
	}
	.login-form .input-wrapper{
		padding-bottom:10px;
	}
	.login-form .row .text-center.text-md-left{
		padding-top:0px !important;
		margin-top:0px !important
	}
}