@CHARSET "UTF-8";

body {
	background: url(../pic/body-bg.jpg) repeat-x 0px 0px;
	background-size: contain;
	min-width: 400px;
}

.panel {
	border-radius: 15px;
	width: 400px;
	margin: auto;
	margin-top: 15%;
}

.panel-heading {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	padding: 35px 0;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.form-group label {
	display: inline;
}

.error {
	color: red;
}

.form-horizontal .form-group {
	padding: 0 40px;
}

.form-horizontal .form-control {
	background: #f0f0f0;
	box-shadow: none;
	padding: 0 20px 0 45px;
	height: 40px;
	transition: all 0.3s ease 0s;
	line-height: 40px;
}

.form-horizontal .form-control:focus {
	background: #e0e0e0;
	box-shadow: none;
	outline: 0 none;
}

.form-horizontal .form-group i {
	position: absolute;
	top: 12px;
	left: 30px;
	font-size: 17px;
	color: #c8c8c8;
	transition: all 0.5s ease 0s;
}

.form-horizontal .form-control:focus+i {
	color: #00b4ef;
}

.form-horizontal .fa-question-circle {
	display: inline-block;
	position: absolute;
	top: 12px;
	right: 30px;
	font-size: 20px;
	color: #808080;
	transition: all 0.5s ease 0s;
}

.form-horizontal .fa-question-circle:hover {
	color: #000;
}

.form-horizontal .main-checkbox {
	float: left;
	width: 20px;
	height: 20px;
	background: #11a3fc;
	border-radius: 50%;
	position: relative;
	margin: 5px 0 0 5px;
	border: 1px solid #11a3fc;
}

.form-horizontal .main-checkbox label {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}

.form-horizontal .main-checkbox label:after {
	content: "";
	width: 10px;
	height: 5px;
	position: absolute;
	top: 5px;
	left: 4px;
	border: 3px solid #fff;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.form-horizontal .main-checkbox input[type=checkbox] {
	visibility: hidden;
}

.form-horizontal .main-checkbox input[type=checkbox]:checked+label:after {
	opacity: 1;
}

.form-horizontal .btn {
	font-size: 14px;
	width: 100%;
	color: #fff;
	background: #39496a;
	border-radius: 5px;
	padding: 10px 0px;
	text-transform: capitalize;
	transition: all 0.5s ease 0s;
	color: #fff;
}

@media screen and (max-width:400px) {
	.form-horizontal .form-group {
		padding: 0 10px;
	}
}

@media screen and (max-width:767px) and (min-width:400px) {
	.form-horizontal .form-group {
		padding: 0 10px;
	}
}

@media screen and (min-width:768px) and (max-width:991px) {
	.form-horizontal .form-group {
		padding: 0 15px;
	}
}

@media screen and (min-width:992px) and (max-width:1199px) {
	.form-horizontal .form-group {
		padding: 0 20px;
	}
}

@media screen and (min-width:1200px) {
	.form-horizontal .form-group {
		padding: 0 30px;
	}
}