
/*****************************************
 Body
*****************************************/

body {
	font-family: "Roboto", sans-serif;
	background-image: url('/assets/img/user_bg.jpg');
	background-size: cover;
	-webkit-animation: slidein 100s;
	animation: slidein 100s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	font-size: 14px;
}

@-webkit-keyframes slidein {
	from {
		background-position: top;
		background-size: 3000px;
	} to {
		background-position: -100px 0px;
		background-size: 2750px;
	}
}

@keyframes slidein {
	from {
		background-position: top;
		background-size: 3000px;
	} to {
		background-position: -100px 0px;
		background-size: 2750px;
	}
}

.jconfirm-title * {
	font-size: 18px;
	font-weight: 500;
}

.jconfirm-title i {
	padding-right: 5px;
}

.jconfirm-content {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 13px;
}

/*****************************************
 Common
*****************************************/

p {
	color: #b3b3b3;
	font-weight: 300;
	font-size: 10px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Roboto", sans-serif;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 32px;
	font-weight: 600;
}

a:hover {
	text-decoration: none !important;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
    height: 100vh;
}

.form-control {
	padding: 4px 8px;
	font-size: 13px;
	box-shadow: none !important;
    webkit-box-shadow: none !important;
	outlint: none !important;
	border-color: #999;
	width: 100%;
}

.form-control.shortwidth {
	display: inline-block;
	width: 60%;
}

.form-control.invalid {
	border-color: red;
}


/* ==========================================================================
   #CARD
   ========================================================================== */
.card {
	width: 40%;
	justify-content: center;
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	height: auto;
	max-width: 600px;
	min-width: 400px;
}

.card .card-body {
	padding: 35px 35px;
	padding-bottom: 30px;
}

@media (max-width : 560px) {
	.container {
		display: block;
		align-items: center;
		justify-content: center;
		padding-top: 30px;
	}
	.card {
		width: 90%;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		border: none;
	}
}

@media  (min-width : 560px) and (max-width : 991.98px) {
	.card {
		width: 80%;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
}

@media  (min-width : 992px) and (max-width : 1800px) {
	.card {
		width: 30%;
		justify-content: center;
		background: #fff;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		-webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
		box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	}
}

/* ==========================================================================
   #Logo
   ========================================================================== */
.logo {
	position: absolute;
	top: 18px;
	right: 18px;
	height: 40px;
	cursor: pointer;
	z-index: 100;
}

/*****************************************
 Form
*****************************************/

form label {
	display: block;
	padding-bottom: 4px;
	font-size: 10px;
	color: #333;
}

form label i {
	padding-left: 5px;
}

form .form-group {
	width: 100%;
	padding-top: 9px;
}

form .form-group:first-child {
	padding-top: 15px;
}

form .form-group.terms-zone {
	padding-top: 40px;
	padding-bottom: 9px;
}

form .form-group.terms-zone label {
	display: block;
	width: 100%;
	vertical-align: middle;
}

form .form-group.terms-zone label a {
	color: #339933;
	padding-left: 3px;
	padding-right: 3px;
	text-decoration: none;
}

form .form-group.terms-zone label a:hover {
	color: #336600;
	border-bottom: 1px solid #999;
	margin-bottom: 3px;
}

form .form-group span {
	font-size: 12px;
}

form .form-group span.caption {
	font-size: 12px;
	padding-top: -2px;
}

form input {
  width: 100%;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 20px;
  box-shadow: none !important;
  webkit-box-shadow: none !important;
  outline: none !important;
}

form input:focus, form input:hover {
  outline: none;
  box-shadow: none;
  webkit-box-shadow: none;
}

form .form-group input[type="checkbox"] {
	max-width: 16px;
	padding-right: 6px;
	align: left;
}

form .form-group .pass-group {
	position: relative;
}

form .form-group .pass-group input[type="password"] {
	display: inline-block;
	width: 100%;
}

form .form-group .pass-group i {
	position: absolute;
	right: 10px;
	top: 3px;
	cursor: pointer;
}

/*****************************************
 Section
*****************************************/

section.header-zone {
	display: block;
	padding-top: 55px;
}

section.header-zone p a {
	color: #339933;
	padding-left: 3px;
	padding-right: 3px;
	text-decoration: none;
}

section.header-zone p a:hover {
	color: #336600;
	padding-left: 3px;
	padding-right: 3px;
	text-decoration: none;
}

section.header-zone p a:hover {
	border-bottom: 1px solid #999;
	margin-bottom: 3px;
}

section .section-header {
	border-bottom: 1px dotted #ccc;
	padding-bottom: 3px;
	margin-bottom: 6px;
	font-size: 16px;
	font-family: 黑体, SimHei;
}

section .section-header i {
	padding-right: 4px;
	padding-left: 6px;
	color: #999;
}

section .section-header i:first-child {
	padding-left: 0px;
}

section .section-header span.current {
	color: #333;
	font-size: 20px;
	font-weight: 500;
}

section .section-header span.current i {
	color: #333;
}

section.options {
	padding-top: 25px;
	width: 100%;
	text-align: center;
}

section.options span a {
	padding-left: 10px;
	padding-right: 10px;
}

section.options span img {
	height: 28px;
}


section .errors-zone {
	display: block;
	padding-top: 20px;
}

section .errors-zone p {
	color: #000;
}

section .errors-zone p.errors {
	color: red;
	font-size: 13px;
	min-height: 50px;
}

section .errors-zone p.errors i {
	padding-right: 5px;
}

section .errors-zone p a {
	color: #339933;
	padding-left: 3px;
	padding-right: 3px;
	text-decoration: none;
}

section .errors-zone p a:hover {
	color: #336600;
	padding-left: 3px;
	padding-right: 3px;
	text-decoration: none;
}

/*****************************************
 Button 
*****************************************/
.button {
	align-items: center;
	background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
	border: 0;
	border-radius: 20px;
	box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
	box-sizing: border-box;
	color: #FFFFFF;
	display: flex;
	font-size: 18px;
	justify-content: center;
	line-height: 1em;
	max-width: 100%;
	min-width: 140px;
	width: 100%;
	padding: 10px 10px;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	cursor: pointer;
}

.button:active, .button:hover {
	outline: 0;
	box-shadow: rgba(151, 65, 252, 0.5) 5px 10px 15px -5px;
}

.button.disabled {
	background-image: none;
	box-shadow: rgba(125, 125, 125, 0.2) 0 15px 30px -5px;
	background-color: #999;
}

.button.disabled:hover {
	outline: 0;
	box-shadow: rgba(125, 125, 125, 0.5) 5px 10px 15px -5px;
}

/*****************************************
 Button / Verify
*****************************************/

.form-group .verifyBtn {
	background-color: rgba(144, 180, 235, 0.65);
	color: #333;
	width: 35%;
	float: right;
	padding: 6px 10px;
	display: inline-block;
	height: 30px;
	border-radius: 5px;
	border: none;
	text-transform: uppercase;
	font-size: 13px;
	text-align: center;
}
.form-group .verifyBtn:hover {
	background-color: rgba(144, 180, 235, 0.90);
	color: #000;
	cursor: pointer;
}
.form-group .verifyBtn:focus {
	outline: none;
}
.form-group .verifyBtn.disabled {
	background-color: rgba(207, 207, 207, 0.3);
	color: #999;
}
.form-group .verifyBtn.disabled:hover {
	background-color: rgba(207, 207, 207, 0.3);
}
.form-group .verifyBtn.disabled:focus {
	outline: none;
}

/*****************************************
 regForm specific
*****************************************/

#regForm button {
	font-size: 13px;
	color: #ccc;
	padding: 6px 12px;
}

#regForm button.active {
	color: #333;
}

#regForm .nav {
	padding-top: 3px;
}
#regForm .tab-pane {
	padding-top: 0px;
}
