
body {
	margin: 0;
	color: #6a6f8c;
	background: #c8c8c8;
	font: 600 16px/18px 'Open Sans',sans-serif;
}

*, :after, :before {
	box-sizing: border-box
}

.clearfix:after, .clearfix:before {
	content: '';
	display: table
}



.fa-home:before {
	color: #ddd;
}
.foot-lnk, .foot-lnk>a {
	color: #ddd;
}
	.foot-lnk > a:hover {
		color: white;
	}


.clearfix:after {
	clear: both;
	display: block
}
.captchaField {
	margin: 0 auto;
	/* margin-top: 15%; */
	border: 1px solid #ccc;
	padding: 15px;
	width: 374px;
	background-color: #fff;
	border-radius: 5px;
}

.CaptchaWrap {
	position: relative;
}

.CaptchaTxtField {
	border-radius: 5px;
	border: 1px solid #ccc;
	display: block;
	box-sizing: border-box;
}

#UserCaptchaCode {
	padding: 15px 10px;
	outline: none;
	font-size: 18px;
	font-weight: normal;
	font-family: 'Open Sans', sans-serif;
}

#CaptchaImageCode {
	text-align: center;
	margin-top: 15px;
	padding: 0px 0;
	width: 300px;
	overflow: hidden;
}

.capcode {
	font-size: 46px;
	display: block;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: default;
	letter-spacing: 1px;
	color: #ccc;
	font-family: 'Roboto Slab', serif;
	font-weight: 100;
	font-style: italic;
}

.ReloadBtn {
	background: url(https://webdevtrick.com/wp-content/uploads/recaptcha.png) left top no-repeat;
	background-size: 100%;
	width: 30px;
	height: 30px;
	border: 0px;
	outline none:;
	position: absolute;
	bottom: 30px;
	left: 299px;
	outline: none;
	cursor: pointer;
}

.btnSubmit {
	margin-top: 15px;
	border: 0px;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 18px;
	background-color: #1285c4;
	color: #fff;
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration: none
}

.login-wrap {
	width: 100%;
	margin: auto;
	max-width: 525px;
	min-height: 620px;
	max-height: 620px;
	position: relative;
	/*background: url(https://raw.githubusercontent.com/khadkamhn/day-01-login-form/master/img/bg.jpg) no-repeat center;*/
	box-shadow: 0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19);
}

.login-html {
	width: 100%;
	height: 100%;
	position: absolute;
	padding: 17px 67px 50px 70px;
	background: #f89c1ce8;
}

	.login-html .sign-in-htm,
	.login-html .sign-up-htm {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		position: absolute;
		transform: rotateY(180deg);
		backface-visibility: hidden;
		transition: all .4s linear;
	}

	.login-html .sign-in,
	.login-html .sign-up,
	.login-form .group .check {
		display: none;
	}

	.login-html .tab,
	.login-form .group .label,
	.login-form .group .button {
		text-transform: uppercase;
	}

	.login-html .tab {
		font-size: 18px;
		/*margin-right: 15px;*/
		padding-bottom: 20px;
		/*margin: 0 15px 10px 0;*/
		display: inline-block;
		border-bottom: 2px solid transparent;
		padding-top: 20px;
	}
		.login-html .tab:hover {
			color: #e2d6d6;
		}

	.login-html .sign-in:checked + .tab,
	.login-html .sign-up:checked + .tab {
		color: #fff !important;
		border-color: #1161ee;
	}

.login-form {
	min-height: 345px;
	position: relative;
	perspective: 1000px;
	transform-style: preserve-3d;
}

	.login-form .group {
		margin-bottom: 15px;
	}

		.login-form .group .label,
		.login-form .group .input,
		.login-form .group .button {
			width: 100%;
			color: #ffffff;
			text-color: #ffffff;
			display: block;
		}

		.login-form .group .input,
		.login-form .group .button {
			border: none;
			padding: 15px 20px;
			border-radius: 25px;
			background: rgba(255,255,255,.1);
		}

		.login-form .group input[data-type="password"] {
			text-security: circle;
			-webkit-text-security: circle;
		}

		.login-form .group .label {
			color: #ffffff;
			font-size: 12px;
		}

		.login-form .group .button {
			background: #1c16129c;
			text-align: center;
		}

		.login-form .group label .icon {
			width: 15px;
			height: 15px;
			border-radius: 2px;
			position: relative;
			display: inline-block;
			background: rgba(255,255,255,.1);
		}

			.login-form .group label .icon:before,
			.login-form .group label .icon:after {
				content: '';
				width: 10px;
				height: 2px;
				background: #fff;
				position: absolute;
				transition: all .2s ease-in-out 0s;
			}

			.login-form .group label .icon:before {
				left: 3px;
				width: 5px;
				bottom: 6px;
				transform: scale(0) rotate(0);
			}

			.login-form .group label .icon:after {
				top: 6px;
				right: 0;
				transform: scale(0) rotate(0);
			}

		.login-form .group .check:checked + label {
			color: #fff;
		}

			.login-form .group .check:checked + label .icon {
				background: #1161ee;
			}

				.login-form .group .check:checked + label .icon:before {
					transform: scale(1) rotate(45deg);
				}

				.login-form .group .check:checked + label .icon:after {
					transform: scale(1) rotate(-45deg);
				}

.login-html .sign-in:checked + .tab + .sign-up + .tab + .login-form .sign-in-htm {
	transform: rotate(0);
}

.login-html .sign-up:checked + .tab + .login-form .sign-up-htm {
	transform: rotate(0);
}

.hr {
	height: 2px;
	margin: 60px 0 50px 0;
	background: rgba(255,255,255,.2);
}

.foot-lnk {
	text-align: center;
}


body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #888;
	line-height: 30px;
	text-align: center;
}

strong { font-weight: 500; }



h1, h2 {
	margin-top: 10px;
	font-size: 38px;
    font-weight: 100;
    color: #555;
    line-height: 50px;
}

h3 {
	font-size: 22px;
    font-weight: 300;
    color: #555;
    line-height: 30px;
}

img { max-width: 100%; }

::-moz-selection { background: #de615e; color: #fff; text-shadow: none; }
::selection { background: #de615e; color: #fff; text-shadow: none; }


.btn-link-1 {
	display: inline-block;
	height: 50px;
	margin: 5px;
	padding: 16px 20px 0 20px;
	background: #de615e;
	font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    color: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
}
.btn-link-1:hover, .btn-link-1:focus, .btn-link-1:active { outline: 0; opacity: 0.6; color: #fff; }

.btn-link-1.btn-link-1-facebook { background: #4862a3; }
.btn-link-1.btn-link-1-twitter { background: #55acee; }
.btn-link-1.btn-link-1-google-plus { background: #dd4b39; }

.btn-link-1 i {
	padding-right: 5px;
	vertical-align: middle;
	font-size: 20px;
	line-height: 20px;
}

.btn-link-2 {
	display: inline-block;
	height: 50px;
	margin: 5px;
	padding: 15px 20px 0 20px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid #fff;
	font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    color: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
}
.btn-link-2:hover, .btn-link-2:focus, 
.btn-link-2:active, .btn-link-2:active:focus { outline: 0; opacity: 0.6; background: rgba(0, 0, 0, 0.3); color: #fff; }


/***** Top content *****/

.inner-bg {
    padding: 100px 0 170px 0;
}

.top-content .text {
	color: #fff;
}

.top-content .text h1 { color: #fff; }

.top-content .description {
	margin: 20px 0 10px 0;
}

.top-content .description p { opacity: 0.8; }

.top-content .description a {
	color: #fff;
}
.top-content .description a:hover, 
.top-content .description a:focus { border-bottom: 1px dotted #fff; }

.form-box {
	margin-top: 35px;
}

.form-top {
	overflow: hidden;
	padding: 0 25px 15px 25px;
	background: #444;
	background: rgba(0, 0, 0, 0.35);
	-moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
	text-align: left;
}

.form-top-left {
	float: left;
	width: 75%;
	padding-top: 25px;
}

.form-top-left h3 { margin-top: 0; color: #fff; }
.form-top-left p { opacity: 0.8; color: #fff; }

.form-top-right {
	float: left;
	width: 25%;
	padding-top: 5px;
	font-size: 66px;
	color: #fff;
	line-height: 100px;
	text-align: right;
	opacity: 0.3;
}

.form-bottom {
	padding: 25px 25px 30px 25px;
	background: #444;
	background: rgba(0, 0, 0, 0.3);
	-moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
	text-align: left;
}

.form-bottom form textarea {
	height: 100px;
}

.form-bottom form button.btn {
	width: 100%;
}

.form-bottom form .input-error {
	border-color: #de615e;
}

.social-login {
	margin-top: 35px;
}

.social-login h3 {
	color: #fff;
}

.social-login-buttons {
	margin-top: 25px;
}


/***** Media queries *****/

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {}

@media (max-width: 767px) {
	
	.inner-bg { padding: 60px 0 110px 0; }

}

@media (max-width: 415px) {
	
	h1, h2 { font-size: 32px; }

}

