/* SIGNIN REG */
#recovery {
	width: 340px;
	margin: 75px auto 10px;
	min-height: 370px;
}

#signin{
	position:absolute;
	top:60px;
	right: 0;
	z-index:1000;
	line-height: .95em;
	display:block;
	width:auto;
	padding:20px;
	background:white;
	border:3px solid #ff8b2f;
	border-radius:8px;
	box-shadow:0 20px 20px rgba(0,0,0,.5);
}

#signin input,
#signin select,
#recovery input,
#recovery select {
	border: 2px solid rgba(0,0,0,.1);
	border-radius: 6px;
	padding: 12px;
	background: #f6f6f6;
	font-weight: normal;
	color: #2b2b2b;
	width: 100%;
	margin: 0;
	font-size: 0.9em;
}

#signin label,
#recovery label {
	line-height: 1.8em;
}

#signin button,
#recovery button {
	position: relative;
	padding: 0.9em 1em;
	border: 1px solid rgba(0,0,0,.2);
	text-transform: uppercase;
	background-color: #ff7201;
	color: #fff;
	border-radius: 5px;
	width: 150px;
}

#signin button:hover,
#recovery button:hover {
	background-color: #ff6000;
}

#signin form img,
#recovery form img {
	width: 20px;
}

#signin form img.input-img,
#recovery form img.input-img {
	position: absolute;
	vertical-align: middle;
	right: 4px;
	top: 32px;
	animation: spin 1s;
}

#signin form .tooltip {
	display: inline-block;
	margin: 0;
}

.tooltip span {
	position: absolute;
	display: none;
	top: -85px;
	left: 33px;
}

.tooltip span:after {
	content: "";
	width: 20px;
	height: 20px;
	background: #f7faff;
	display: block;
	position: absolute;
	left: -6px;
	bottom: 3px;
	transform: rotate(45deg);
	z-index: -1;
	border: 1px solid #d4e0ff;
	background: #f7faff;
}

.tooltip:hover span {
	background: #f7faff;
	border: 1px solid #d4e0ff;
	display: inline-block;
	border-radius: 5px;
	width: 250px;
	padding: 7px 10px;
	font-size: 0.85em;
}

.btn-loader-spinner {
	position: absolute;
	display: none;
	width: 15%;
	filter: invert(1);
	left: 5px;
	bottom: 4px;
	animation:spin 1s infinite;
}

.warning-msg {
	font-weight: 400;
	font-size: 0.8em;
	color: #ec0000;
}

.fine-print {
	font-size: 0.75em;
}

.app-login {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 600px;
}

.app-login button {
	margin-bottom: 10px;
}

.app-login .app-login-form {
	border-right: 1px solid #cccccc;
	padding:20px;
	flex: 1 0 0
}

.app-login-register {
	text-align: center;
	padding:20px
}

.app-login-register img{
	margin:20px
}

.app-register {
	width: 480px;
	margin: 0 auto;
}

.app-register-terms {
	font-weight: 200;
	font-size: 0.9em;
}

.app-form-container {
	padding: 10px;
	box-shadow: 0px 0px 2px #656565;
	border-radius: 8px;
	margin:8px 0;
}

.app-form-container .title {
	margin: 8px 0 15px;
}
.app-form-container div {
	position: relative;
	margin: 10px 0;
	text-align: start;
}

.app-pass-recovery {
	width: 400px;
}

.required {
	border: 1px solid #ff8282 !important;
}

.layer-link {
	color: #ff7300;
	text-decoration: underline;
	cursor: pointer;
}

.notification-msg {
	display: none;
	padding: 8px 0 8px 5px;
	background: #d8edff;
	margin-bottom: 10px;
	border-left: 2px solid #6cbaff;
	color: #305473;
	border-radius: 0 5px 5px 0;
	transition: all 1s linear;
}

.pass-match {
	filter: invert(48%) sepia(80%) saturate(300%) hue-rotate(86deg) brightness(118%) contrast(120%);
}

.pass-mismatch {
	filter: invert(30%) sepia(80%) saturate(700%) hue-rotate(325deg) brightness(118%) contrast(120%);
}

@-moz-keyframes spin {
	from { -moz-transform: rotate(0deg); }
	to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

