@charset "ISO-8859-1";

/*############################################################### LAYOUT #*/
@font-face {
    font-family: Montserrat;
    src: url('../font/montserrat.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: Bahnschrift;
	src: url('../font/bahnschrift.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
    box-sizing: border-box;
}

:root {
	--cor1: #00D1B2;
	--cor2: #009FFD;
	--cor3: #FFC914;
	--cor4: #E4572E;
	--cor5: #F6F8FA;
	--cor6: #3C403F;
	
	--cor11: #00AD91;
	--cor12: #00E5BB;
	--cor13: #78C1B6;
	--cor14: #389384;
}

body {
		margin: 0 auto;
    font-family: Bahnschrift;
    font-size: 15px;
    background-color: #ffffff;
    color: #221e1e;
    overflow-x: hidden;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-touch-callout: none;
}

.container {
    display: grid;
    grid-template-areas: "login slide" "footer footer";
    grid-template-columns: 600px 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
		background: #F6F8FA;
}

.login {
  grid-area: login;
  padding: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	padding: 60px;
	margin: 35px 0px 0px 35px;
	border-radius: 15px 0px 0px 15px;
	border: 1px solid #f7f7f7;
	border-right: 0px;
	box-shadow: 4px 4px 14px rgba(50, 50, 50, 0.20);
}

.slide {
    grid-area: slide;
    background-image: url("../img/logo/slide.webp");
    background-position: center;
    background-repeat: repeat-y;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
		margin: 35px 35px 0px 0px;
		border: 1px solid #f7f7f7;
		border-radius: 0px 15px 15px 0px;		
		border-left: 0px;
		box-shadow: 4px 4px 14px rgba(50, 50, 50, 0.20);
}

.footer{
	grid-area: footer;
	text-align: center;
	margin: 10px 10px 10px 10px;
}

.item {
	float: none;
	width: 100%;
	padding-top: 20px;
	text-align: center;
}

form {
	width: 100%;
}

/*############################################################### BTNs #*/
button {
	border: none;
	outline: none;
	background: none;
	border-radius: 5px;
	cursor: pointer;
}

.btn_pagina {
	width: 100%;
	font-family: Montserrat;
	font-size: 1.1em;
	color: #FFFFFF;
	font-weight: bold;
	padding: 10px;
	background: var(--cor13);
}

.btn_pagina:hover {
	background: var(--cor14);
	transition: 1s;
}

.btn_pagina:active {
	background: var(--cor12);
}


button:disabled, button[disabled] {
	background: #c9c9c9;
	cursor: not-allowed;
}

button:hover:disabled, button:hover[disabled] {
	background: #c9c9c9;
}

/*############################################################### INPUTs #*/
input {
	background: none;
	outline: none;
	border: none;
	border-radius: 5px;
	padding: 10px 10px 10px 10px;
}

.input_pagina {
	width: 100%;
	color: #3C403F;
	font-size: 1.1em;
	font-family: 'Bahnschrift', sans-serif;
	border-bottom: 2px solid #3C403F;
}

.input_pagina:hover {
	background: #F7FFFC;
	transition: 0.5s;
	border-bottom: 2px solid var(--cor11);
}

input::placeholder {
	color: #c2d4d0;
}

.input_lower {
	text-transform: lowercase;
}

/*############################################################### IMGs #*/
.icone_login {
	color: #ffffff;
	font-size: 14px;
}

.img_logotipo{
	max-width: 100%;
	padding: 20px 40px 20px 40px;
}

/*############################################################### OUTROS #*/
.txt_esqueceu, .txt_clique {
	font-size: 11px;
	color: #3C403F;
	text-align: center;
	padding: 0px;
}

.txt_clique:hover{
	color: var(--cor11);
}

.txt_clique:active{
	color: var(--cor1);
}

.txt_texto {
	font-size: 0.7em;
	color: #535353;
	width: 100%;
}

.justificado {
	text-align: justify;
}

.txt_subtitulo {
	font-size: 1.4em;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
}

.MensagemCampo {
	border: none;
	font-weight: bold;
}

.MensagemCampo:hover {
	background: none;
	border-bottom: none;
}

/*############################################################### LINKS #*/
a, a:link, a:active, a:visited, a:hover{
	text-decoration: none;
}
