/* ------------------------------------------ */
/*                    Geral                   */
/* ------------------------------------------ */
body{
	background: #fff; /* branco */
	width: 100%;
	height: 1080px;
}

.faixa-padrao-login{
	display: grid;
	grid-template-columns: 10vw 80vw;
	width: 100%;
	height: 80px;
	background-color: #ffffff;
}

.ajusta-logo{
	justify-self: center;
}

/* ------------------------------------------ */
/*              Acesso do usuário             */
/* ------------------------------------------ */
.linha{
	margin-left: 0;
}

input[name="log"],
input[name="pw"]{
	width: 85%;
}

.acesso-alternativo{
	text-align: center;
	margin-left: -5px;
	top: 20px;
	font-size: 18px;
}

.centra-login{
	display: grid;
	grid-template-columns: 1fr 160px 1fr;
}

.botao-login{
    background-color: #3b3b3b;
    border: none;
    color: white;
	width:150px;
	height:50px;
	margin: 10px;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
	border-radius: 10px;
}

.ajusta-form-login{
	font-size: 16px;
	/*background: rgb(209, 99, 99);*/
	max-width: 50%;
	margin: 0 auto;
	padding: 5px;
}

.logo-cliente{
	width: auto;
	padding-top: 10px;
	height: 60px;
}

.login{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: auto;
    margin-top: 20vh;
    width: 35vw;
    padding: 30px;  
    background-color: #F6F6F6;
	opacity: 0.8;
    justify-content: center;
    align-items: center;
	border: 2px solid rgb(94, 94, 94);
    /*border-radius: 20px; */
}

.sombra_login{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.fonte-20{
	font-size: 20px;
	justify-content: left;
}