@charset "UTF-8";

/*------------ GENERAL ------------ */
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
@font-face {
    font-family: Abel-Regular;
    src:url(../font/Abel-Regular.ttf);
}

b {
	font-weight: bold;
}

html {
	height: 100%;
  	box-sizing: border-box;
	background-color: #1d1d1b;
}

body {
	font-family: Abel-Regular, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 14px;
	line-height: 20px;
	margin:0;
	color:#000;
	height: 100%;
}

a {
	text-decoration:none !important;
	color:#000;
}

a:hover {
	text-decoration:none !important;
	color:#169fdb;
}

main {
	position: relative;
	padding: 130px 60px 90px 60px;
	width: 100%;
	min-height: 100vh;
	background-color:#ececec;
}

#container-page {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	display: table;
}

.title-page {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 40px;
	color: #000;
}

@media (max-width: 768px) {
	
	main {
		padding: 80px 20px 80px 20px;
	}

}





/*------------ LOGIN ------------ */
.login-background {
	background-color: #ECECEC;
}

.login-main {
	padding: 60px 20px 20px 20px;
	width: 100%; 
	display: table;
	background-color: #ECECEC;
	color: #FFF;
	font-family: Abel-Regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login-form {
	background-color: #1d1d1d !important;
	max-width: 400px;
	margin: auto;
	padding: 20px;
	box-shadow: 4px 4px 8px #BDBFCA;
}

.login-container-logo {
	width: 100%;
	max-width: 200px;
	margin: auto;
	margin-bottom: 40px;
}

.login-form label {
	color: #fff;
	font-weight: lighter;
}

.btn-home {
	background-color: #FFFFFF !important;
	color: #000000 !important;
	border-color: #bdbfca !important;
}

.btn-home:hover {
	background-color: #444 !important;
	color: #fff !important;
}

.login-container-copyright {
	width: 100%;
	max-width: 400px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 40px;
	color: #000000;
	font-size:9px;
	line-height: 12px;
}

.login-container-copyright a {
	color: #000000;
}
.login-container-copyright a:hover {
	color: #169fdb;
}

.login-error {
	color: #D20000;
	margin-top: 20px;
	height: 20px;
}

.container-messages {
	width: 100%;
	max-width: 400px;
	margin: auto;
	background-color: #ffffff;
	border-left: 10px solid #169fdb;
	box-shadow: 2px 4px 8px #bdbfca;
	padding: 20px;
	margin-bottom: 20px;
	color: #000
}

.container-messages-error {
	border-left: 10px solid #D20000 !important;
	color: #D20000 !important;
}

