/*
 * user-auth.css
 *
 * @project:	Spice Clients FTP WebApp
 * @client:		Spice Communication Kft.
 * @agency:		Spice Communication Kft.
 * @developer:	Kusz Tamás [tamas@monovisual.com]
 *
 * @path:		/cms/assets/css/user-auth.css
 * @version:	1.0
 */
 
@charset 'utf-8';

/*
 * BASE styles
 * ---------------------------------------------------------------------------------------------- */

* { font: 400 100%/1.5 'Open Sans', sans-serif; }

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus { outline: 2px solid rgba(70, 163, 207, .5); }

::-moz-selection {
	background: #e9e9e9;
	text-shadow: none;
}

::selection {
	background: #e9e9e9;
	text-shadow: none;
}

html 		{
	min-height: 100%;
	background-color: #f7f7f7;
}

body		{ min-height: 100%; }

h1			{
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	color: #1d1d1d;
	margin: 0;
}

	h1 span {
		display: block;
		color: #7c7c7c;
		font-weight: 600;
		font-size: 16px;
		text-transform: none;
	}
	
	h1 mark {
		width: 6px;
		height: 16px;
		display: inline-block;
		vertical-align: middle;
		margin: -4px 4px 0 4px;
		text-indent: -9999px;
		background-color: #ea433c;
		-webkit-transform: skewX(-25deg);
		   -moz-transform: skewX(-25deg);
		    -ms-transform: skewX(-25deg);
		        transform: skewX(-25deg);
	}
	
hr			{
	border: none;
	height: 3px;
	background-color: #e8e8e8;
	margin: 22px 0 10px 0;
}

a.fbutton	{
	font-size: 13px;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	color: #3f97c4;
	display: block;
	line-height: 2;
	position: relative;
}

	a.fbutton:hover {
		text-decoration: underline;
	}
	
form,
fieldset	{ padding: 0; margin: 0; }

fieldset	{ border: none; }

legend		{
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: #28282e;
	margin: 0 0 5px 0;
	padding: 8px 0;
}

input[type="email"],
input[type="password"],
input[type="text"] {
	width: 100%;
	margin: 4px 0;
	padding: 8px 15px;
	vertical-align: middle;
	color: #575760;
	border: 1px solid #e8e8e8;
	background-color: #f7f7f7;
	-webkit-appearance: none;
	font-weight: 400;
	font-size: 14px;
}

::-webkit-input-placeholder {
	font-style: italic;
	font-weight: 400;
	color: #9d9da9;
}

:-moz-placeholder { /* Firefox 18- */
	font-style: italic;
	font-weight: 300;
	color: #9d9da9;
}

::-moz-placeholder {  /* Firefox 19+ */
	font-style: italic;
	font-weight: 300;
	color: #9d9da9;
}

:-ms-input-placeholder {  
	font-style: italic;
	font-weight: 300;
	color: #9d9da9;
}

input[type="submit"] {
	border: none;
	width: 100%;
	font-weight: 600;
	color: #fff;
	padding: 8px 25px;
	margin-top: 18px;
	text-transform: uppercase;
	background-color: #ea433c;
}

label.error,
label.responseerror 	{
	color: #ea433c;
	font-size: 13px;
	font-style: italic;
	font-weight: 600;
	display: block;
	padding-left: 18px;
	margin: 8px 0 8px 0;
}

	label.error:before,
	label.responseerror:before {
		font-family: 'spiceclients_webapp_icns';
		content: '\e81e';
		color: #f8bf44;
		font-style: normal;
		margin: 0 6px 0 -18px;
	}
	
label.error.first,
label.responseerror.first { margin-top: 0; }
	
p.form-tooltip	{
	font-weight: 400;
	font-size: 12px;
	color: #8b8b9b;
}

p.form-tooltip.last { margin-bottom: 0; }

	p.form-tooltip:before {
		content: 'Figyelem: ';
		font-weight: 700;
		color: #6d6d84;
	}
	
	p.form-tooltip strong { font-weight: 600; font-style: italic; color: #6d6d84; }


/*
 * AUTHENTICATION styles
 * ---------------------------------------------------------------------------------------------- */
 
.hidden { display: none !important; }
 
.auth-container-outer {
	background-color: #fff;
	padding: 60px 0;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0, .35);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0, .35);
	        box-shadow: 0px 1px 1px rgba(0,0,0, .35);
}

.auth-container-inner {
	width: 320px;
	margin: 0 auto;
	padding-top: 75px;
	background: url('../images/spice-communication-logo.svg') center top no-repeat;
	background-size: 130px auto;
}

	.no-svg .auth-container-inner {
		background: url('../images/spice-communication-logo.png') center top no-repeat;
		background-size: 130px auto;
	}

.userdata		{
	text-align: center;
	border-bottom: 1px solid #e8e8e8;
	margin: 15px 0 5px 0;
	padding: 5px 0 15px 0;
}

	.userdata:before {
		color: #c6c6cc;
		font-size: 45px;
	}
	
	.userdata p {
		margin: 0;
		font-size: 16px;
		font-weight: 700;
		color: #4c4c4c;
	}
	
		.userdata p small {
			font-size: 13px;
			font-weight: 400;
			display: block;
		}
		
.output {
	text-align: center;
	margin: 15px 0 0 0;
}

	.output:before {
		font-size: 45px;
	}
	
	.output.success:before {
		color: #85ce4f;
	}
	
	.output.failed:before {
		color: #ea433c;
	}
	
	.output.attention:before {
		color: #f8bf44;
	}

	.output p {
		margin: 10px 0 0 0;
		font-size: 12px;
		color: #545454;
	}
	
		.output p strong { font-weight: 600; font-size: 13px; color: #4c4c4c; }
	
		.output p mark {
			display: inline-block;
			background-color: transparent;
			font-weight: 600;
			font-size: 14px;
			text-align: center;
			width: 12px;
		}
		
.beta	{
	position: fixed;
	right: -48px;
	top: 6px;
	z-index: 100000;
	padding: 1px 50px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	font-size: 9px;
	background-color: #ff8c3f;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	border-bottom: 1px solid #f27d2f;
}