/*css for account login client css*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

body{
	margin: 0px;
}

header{
	width:100%;
	height:90px;
	background-color: #fff;
}

div.container-fluid{
	width:100%;
	height:110vh;
	border:1px solid #3e6cdb;
	position: relative;
	top:0px;
	left:0px;
	bottom: 0px;
	right:0px;
	padding: 0px;
	margin:0px
}

section.form-container{
	width: 100%;
	height:120vh;
	position: relative;
}

section.form-container article div{
	height:auto;
	padding:20px;
	box-sizing: border-box;
	border:0px solid gray;
	border-radius:10px;
}

section.form-container article{
	position: absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(0,0,0,0.5);
}

section.form-container img{
	width:100%;
	height:100%
}

section.form-container div h4{
	color:#fff
}

form.form-login{
   width: 100%;
   height:auto;
   border:0px solid green;
   margin:30px 0px;

}

form.form-login>label{
	width: 100%;
	height:auto;
	border:0px solid green;
	margin:30px 0px;
	margin:10px 0px -10px 0px;
	color:#fff;
	font-weight: bold;
 
 }

 form.form-login>input[type="text"], form.form-login>input[type="email"],form.form-login>input[type="password"] {
	width:100%;
	height:50px;
	margin:5px 0px;
	outline: 0px;
	text-indent: 5px;
	border-radius:20px;
	border:2px solid #ee990d;
	outline: 0px;
	text-indent: 10px;
}

form.form-login>input[type='submit']{
	background-color: #ee990d;
	border:0px;
	color:#fff;
	margin:20px 0px;
	width:100%;
	height:50px;
	outline: 0px;
	text-indent: 5px;
	border-radius:25px;
	outline: 0px;
}

form.form-login>input[type='submit']:disabled{
	background-color: #bbbbbb;
	
}