


/* -------------------------------------- */
/* --- FORM ELEMENTS -------------------- */
/* -------------------------------------- */



::placeholder {
	color: #AAA;
	opacity: 1;
}
::-ms-input-placeholder {
	color: #AAA;
}

.AuthForm {
	display: inline-block;
	padding: 40px 0 0 0;
}
.AuthForm .Input {
	position: relative;
}
.AuthForm select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	font-size: 13px;
	font-family: inherit;
	font-weight: inherit;
	color: #555;
	margin: 0 0 10px 0;
	padding: 12px 8px 12px 45px;
	width: 100%;
	border: solid 1px #d9d9d9;
	border-radius: 0;
	outline: none;
	background-color: transparent;
	-moz-outline: none;
	letter-spacing: -0.2px;
	cursor: pointer;
}
.AuthForm select:required:invalid {
	color: #AAA;
}
.AuthForm input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	font-size: 13px;
	font-family: inherit;
	font-weight: inherit;
	color: #555;
	margin: 0 0 10px 0;
	padding: 0;
	width: 100%;
	border: solid 1px #d9d9d9;
	border-radius: 0;
	outline: none;
	background-color: #FFF;
	-moz-outline: none;
	letter-spacing: -0.2px;
}
.AuthForm input:-webkit-autofill,
.AuthForm input:-webkit-autofill:hover, 
.AuthForm input:-webkit-autofill:focus {
	border: solid 1px #d9d9d9;
	-webkit-text-fill-color: #555;
	font-weight: inherit;
	-webkit-box-shadow: 0 0 0px 1000px #FFF inset;
	box-shadow: 0 0 0px 1000px #FFF inset;
}
.AuthForm input[ type=text ],
.AuthForm input[ type=tel ],
.AuthForm input[ type=email ],
.AuthForm input[ type=password ] {
	padding: 12px 8px 12px 45px;
	width: 230px;
}
.AuthForm .Field.Select .Input:before {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -1px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #BBB;
	pointer-events: none;
}
.AuthForm .Field.Name .Input:after,
.AuthForm .Field.Phone .Input:after,
.AuthForm .Field.Date .Input:after,
.AuthForm .Field.Time .Input:after,
.AuthForm .Field.Location .Input:after,
.AuthForm .Field.Email .Input:after,
.AuthForm .Field.Pass .Input:after,
.AuthForm .Field.ConfCode .Input:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	height: 20px;
	width: 35px;
	border-right: solid 1px #d9d9d9;
	z-index: 2;
	margin-top: -10px;
	background-repeat: no-repeat;
	background-position: 13px center;
	background-size: 12px;
}
.AuthForm .Field.Email .Input:after {
	background-image: var( --icon_img_email );
}
.AuthForm .Field.Name .Input:after {
	background-image: var( --icon_img_person );
}
.AuthForm .Field.Date .Input:after {
	background-image: var( --icon_img_calendar );
}
.AuthForm .Field.Time .Input:after {
	background-image: var( --icon_img_time );
}
.AuthForm .Field.Location .Input:after {
	background-image: var( --icon_img_location );
}
.AuthForm .Field.Pass .Input:after,
.AuthForm .Field.ConfCode .Input:after {
	background-image: var( --icon_img_lock );
	background-position: 14px center;
	background-size: 10px;
}
.AuthForm .Field.Submit .Input {
	margin: 30px auto 0 auto;
}
.AuthForm input[ type=submit ] {
	border: none;
	background-color: var( --purple_main );
	padding: 18px 30px 18px 30px;
	margin: 0 auto;
	border-radius: 1000px;
	color: #ffdaeb;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	min-width: 120px;
	width: auto;
	font-size: 11px;
	letter-spacing: 0.2px;
}
.AuthForm input[ type=text ]:focus,
.AuthForm input[ type=tel ]:focus,
.AuthForm input[ type=email ]:focus,
.AuthForm input[ type=password ]:focus,
.AuthForm input[ type=date ]:focus,
.AuthForm select:focus{
	border-color: var( --purple_main );
}
.AuthForm .HelpInfo {
	padding: 25px 0 0 0;
	font-size: 0;
}
.AuthForm .HelpInfo .LinkList > ul > li > a {
	font-size: 11.5px;
}
.AuthForm input[ readonly ] {
	background-color: #F5F5F5;
	color: #999;
	border-style: dashed;
}
.AuthForm .Input.ReadOnly:after {
	opacity: 0.6;
}



/* -------------------------------------- */
/* --- CONTENT SECS --------------------- */
/* -------------------------------------- */



.AuthForm .ContentSec {
	margin: 0 0 10px 0;
	padding: 25px 0 10px 0;
	background-image: var( --line_img_dash_horz );
	background-size: 10px 1px;
	background-position: bottom center;
	background-repeat: repeat-x;
	width: 285px;
}
.AuthForm .ContentSec .SecTitle {
	background-image: var( --line_img_dash_horz );
	background-size: 10px 1px;
	background-position: center;
	background-repeat: repeat-x;
}
.AuthForm .ContentSec .SecTitle span {
	display: inline-block;
	background-color: #FFF;
	padding: 0 10px;
}
.AuthForm .ContentSec .SecContent {
	padding: 20px 0 15px 0;
}



/* -------------------------------------- */
/* --- PASSWORD AUTHENTICATION ---------- */
/* -------------------------------------- */



.AuthForm .PassAuth .PassAuthItems > ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: 0;
}
.AuthForm .PassAuth .PassAuthItems > ul > li {
	font-size: 11px;
	margin: 0;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 50%;
	white-space: nowrap;
	text-align: left;
}
.AuthForm .PassAuth .PassAuthItems > ul > li span {
	display: block;
	padding: 8px 0 8px 25px;
}
.AuthForm .PassAuth .PassAuthItems > ul > li:before {
	content: '';
	display: block;
	position: absolute;
	height: 17px;
	width: 17px;
	border-radius: 1000px;
	border: solid 1px #c32b2b;
	left: 0;
	top: 50%;
	margin-top: -10px;
	background-image: var( --icon_img_verify_n );
	background-position: center;
	background-size: 17px;
	background-repeat: no-repeat;
	transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
}
.AuthForm .PassAuth .PassAuthItems > ul > li.Pass:before {
	background-image: var( --icon_img_verify_y );
	border-color: #9aa26f;
	background-color: #9aa26f;
}



/* -------------------------------------- */
/* --- TEXT BLOCKS ---------------------- */
/* -------------------------------------- */



.AuthForm .TextBlock {
	width: 283px;
	display: inline-block;
	margin: 40px 0 0 0;
	padding: 35px 0 0 0;
	color: #888;
	background-image: var( --line_img_dash_horz );
	background-size: 10px 1px;
	background-position: top center;
	background-repeat: repeat-x;
}
.AuthForm .TextBlock h3 {
	margin: 0 0 20px 0;
	font-weight: 400;
	font-size: 11.5px;
}
.AuthForm .TextBlock p {
	margin: 0;
	padding: 0 0 10px 0;
	text-align: justify;
	font-size: 11px;
}
.AuthForm .TextBlock p a {
	text-decoration: underline;
}






