/* Reset ================================================================================= */
.login-body .login-box{
	background-size:cover;
	background-position:center;
	position:relative;
	border:1px solid #f5f5f7;
	border-radius:20px;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	background-repeat: no-repeat;
} 
.login-body .login-box::before {
	content:"";
	background-image: -moz-linear-gradient( -90deg, rgb(82,182,255) 0%, rgb(53,150,221) 38%, rgb(23,117,186) 100%);
	background-image: -webkit-linear-gradient( -90deg, rgb(82,182,255) 0%, rgb(53,150,221) 38%, rgb(23,117,186) 100%);
	background-image: -ms-linear-gradient( -90deg, rgb(82,182,255) 0%, rgb(53,150,221) 38%, rgb(23,117,186) 100%);
	position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.76;
}
.login-box .login-right-bg {
	padding:100px 50px;
}
.login-right-bg .logo-img {
	margin-bottom:25px;
}
.login-right-bg .logo-img a {
	display:inline-block;
}
.login-right-bg .login-content p {
	margin:0;
	font-size:16px;
	color:#ffffff;
	line-height: 26px;
}
.login-box .login-form{
	background-color:#ffffff;
	padding:50px; 
}
.login-form .form-title{
	margin-top:35px;
	margin-bottom:35px;
}
.login-form .form-title h1{
	font-weight:600;
	color:#1775ba;
	text-align:center;
	position:relative;
}
.login-form .form-title h1::after {
	content:"";
	width: 100px;
    height: 2px;
    background-color: #1775ba;
    display: block;
    margin: 10px auto 0 auto;
}
.login-form .form-logo a {
	display:inline-block;
}
.form-list .form-group {
	margin-bottom:20px;
}
.form-list .form-group .form-control {
	border:1px solid #d8d8d8;
	border-radius:4px;
	height:50px;
	box-shadow:none;
	font-weight:500;
	color:#000000;
	font-size:14px;
	padding:10px 20px;
}
.form-list .form-group .form-control:focus {
	border-color:#1775ba;
}
.form-list .form-group .form-control::-webkit-input-placeholder {
	color: #b6b6b6;
	opacity:1;
}
.form-list .form-group .form-control:-ms-input-placeholder {
	color: #b6b6b6;
	opacity:1;
}
.form-list .form-group .form-control::placeholder {
	color: #b6b6b6;
	opacity:1;
}
.form-list .form-group .input-group  .input-group-prepend .input-group-text {
	background-color:#ffffff;
	color:#323233;
}
.form-list .form-group .note {
	margin:10px 0 0 0;
	color:#666666;
	font-weight:300;
	text-align:center;
}
.form-list .form-group .input-group  .form-control{
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-list .form-button .blue_button {
	height:50px;
	width:100%;
	outline:none;
	background-color:#1775ba;
	border:2px solid #1775ba;
	border-radius:4px;
	color:#ffffff;
	font-size:18px;
	font-weight:500;
	text-align:center;
}
.form-list .form-button .blue_button:hover {
	background-color:#ffffff;
	color:#1775ba;
}
.form-list .form-link {
	margin-top:20px;
}
.form-list .form-link .link-text p{
	margin:0;
	font-weight:300;
	color:#666666;
}
.form-list .form-link .link-text p a {
	color:#1775ba;
	font-weight:600;
	text-decoration:underline;
}
.form-list .form-link .link-text p a:hover {
	color:#000000;
}
.otp_box .otp_label {
	margin-bottom:20px;
	color:#666666;
} 
.otp_box .otp_label b {
	color:#1775ba;
	font-weight: 600;
}
.otp_box .otp_list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
}
.otp_box .otp_list .form-control {
	width: 50px;
	text-align: center;
	padding:0 5px;
}
.otp_box .otp_list .form-control + .form-control {
	margin-left:15px; 
}
.fancy-checkbox {
	position:relative;
	display: block;
	margin:0;
}
.fancy-checkbox input[type="checkbox"]{
	margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.fancy-checkbox span {
	display:block;
	position:relative;
	padding-left:24px;
	line-height: 16px;
}
.fancy-checkbox span a {
	color:#1775ba;
	font-weight:500;
	text-decoration:underline;
}
.fancy-checkbox span a:hover {
	color:#000000; 
}
.fancy-checkbox span::before {
	content:"";
	border: 1px solid #d8d8d8;
	border-radius:4px;
	height:16px;
	width:16px;
	display:block;
	background-color:#ffffff;
	position:absolute;
	left:0;
	cursor:pointer;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.fancy-checkbox span::after {
	content: "\f00c";
    font-family: fontawesome;
    color: #ffffff;
    cursor: pointer;
    position: absolute; 
    font-size: 11px;
    left: 3px;
    top: 1px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	transform: scale(0);
	-webkit-transform: scale(0);
}
.fancy-checkbox input[type="checkbox"]:checked + span::before {
	background-color:#1775ba;
	border-color:#1775ba;
}
.fancy-checkbox input[type="checkbox"]:checked + span::after {
	transform: scale(1);
	-webkit-transform: scale(1);
}




/* Responsive  */ 
@media (min-width: 992px) {
	.login-body .login-box::before {
		right: 0; 
		width: 50%;
	} 
} 
@media (max-width: 575px) {
	.form-list .form-link .link-text {
		margin-bottom:10px;
	}
	.form-list .form-link .link-text p {
		text-align:center;
	}
} 