/****************
 *				*
 *	LOGIN		*
 *	©2020		*
 *				*
 ****************/


@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,600');

html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	background-color: #5384bb; /*#c9c5b7*/
}

a, input, button { outline: 0; -webkit-appearance: none; }
a { color: #444; text-decoration: none; }
a:hover { color: rgba(68,68,68,.8); }


.container {
	display: flex;
	min-height: 100vh;
}

.bloco-login {
	position: relative;
	width: 100%;
	padding: 40px;
}

.bloco-login:first-child {
	width: 50%;
	background-color: #fff;
	text-align: center;
	padding: 0;

}


.login {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.login p {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 3px 0;
}


.logo {
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 40px;
}

.logo img {
	width: auto;
	max-height: 120px;
	pointer-events: none;
}

.logo span {
    /*
	position: absolute;
	top: 0;
	font-size: 14px;
	color: #fff;
	background-color: #444;
	padding: 2px 8px;
	border-radius: 2px;
	*/
	display: none;
}


input,
button {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	color: #444;
	padding: 10px;
	margin: 5px 0;
	border: solid 1px #444;
	/*border-radius: 2px;*/
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input:focus { background-color: #eee; }

input[type=submit],
button {
	color: #fff;
	background-color: #444;
	font-weight: 700;
}

input[type=submit]:hover,
button:hover {
	background-color: #555;
	cursor: pointer;
}


.erro-login {
	padding-top: 20px;
	color: #444;
	margin: 0 auto;
	text-align: center;
}

/*
.erro-login a {
	color: #fff;
	font-weight: 400;
	text-decoration: none;
}
*/

.login small {
	float: left;
	margin-top: 20px;
	text-align: left;
}

/*
.login-desc-serv p {
	font-size: 24px;
	margin: 0 0 20px 0;
}
*/


/*
.empresas-login ~ img { display: none; }

.empresas-login { font-size: 14px; }

.empresas-login a {
	color: #fff;
	text-decoration: none;
}

.empresas-login select,
.empresas-login input {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	padding: 10px;
	margin: 5px 0;
	border: none;
	border-radius: 2px;
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}

.empresas-login select {
	position: relative;
	display: inline-block;
	background: #fff url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+") no-repeat right;
	padding-right: 30px;
	appearance: none;
	-webkit-appearance: none;
    -moz-appearance: none;
}

.empresas-login input[type=submit] {
	color: #fff;
	background-color: #444;
	font-weight: 700;
}

.empresas-login input[type=submit]:hover {
	background-color: #555;
	cursor: pointer;
}
*/


.teehee {
	position: absolute;
	font-size: 14px;
	color: #444;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
}


.manutencao {
	text-transform: uppercase;
}

.manutencao span {
	/*
	font-weight: 300;
	font-size: 14px;
	*/
	text-transform: initial;
}


input::placeholder { color: #444; opacity: 1; }
input::-webkit-input-placeholder { color: #444; }


button.add-pwa {
	font-weight: 300;
	color: #444;
	background: #eee;
	margin: 0;
	padding: 15px;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
}

.add-pwa img {
	width: auto;
	height: 18px;
	margin: -4px 10px 0 0;
	vertical-align: middle;
}


/****************
 *				*
 *	MOBILE ?	*
 *				*
 ****************/

@media only screen and (max-width: 1024px) {
	.logo span { position: initial; }
}

@media only screen and (max-width: 999px) {
	.bloco-login:first-child { width: 100%; }
	.bloco-login:last-child { display: none; }
}
