/* SORTIMO PGX FRONTEND */

/*
 * COMMON
 */
* {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;

	-moz-user-select: none; /* Firefox */
    user-select: none; /* Standard */
}

body, html {
	width: 100%;
	height: 100%
	overflow: hidden;
	background-color: #eeeeee;
	text-align: center;

	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}


.btn_blue {
	width: 180px;
	height: 17px;
	padding: 6px 4px 12px;
	font-size: 1.2em;
	text-align: center;
	color: #ffffff;
	background-color: #0669b2;
	border: 2px solid #0669b2;
	border-radius: 4px;
	margin: 0.5em;
	cursor: pointer;
	display: inline-block;
}

.btn_blue:hover {
	color: #0669b2;
	background-color: #ffffff;
}

input {
	font-size: 1em;
	padding: 0.4em 0.3em 0.5em;
	margin: 0.25em 0;

	-moz-user-select: text; /* Firefox */
    user-select: text; /* Standard */
}

.hidden {
	display: none;
}


/*
 * LOGIN
 */
#login_container {
	position: relative;
	width: 80%;
	height: auto;
	max-width: 600px;
	padding: 10px;
	margin: 4em auto;
	background-color: #0669b2;
	border-radius: 10px;
}

#login_container input {
	width: 80%;
}

#login_container button {
	font-size: 1.2em;
	padding: 0.4em 0.3em 0.5em;
	width: 40%;
	margin: 0.25em 0;
	background-color: #ffffff;
	color: #0669b2;
	border: 2px solid #ffffff;
	cursor: pointer;
}

#login_container button:hover {
	background-color: #0669b2;
	color: #ffffff;
	border: 2px solid #ffffff;
}

#login_logo {
	width: 20%;
	max-width: 400px;
	margin: 1em 0;
}

#login_footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1em;
	background-color: #424242;
	font-size: 0.8em;
	padding: 0.5em 0;
	color: #eeeeee;
}

#login_footer a {
	text-decoration: underline;
	color: #eeeeee;
}

#login_footer a:hover {
	text-decoration: none;
}




/* END */