body{
	background-color: #E8E8E8; 
}
.form_login{
    position: absolute;
    width: 30%;
    left: 50%;
    top: 50%;
    padding-bottom: 4%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to bottom, #8B0000, #CD5C5C , #F5F5DC);
    border-radius: 15px;
    z-index:99;
    place-items: center;
}
.div_logo{
    width:40%;
    
}

.div_logo img{
    width: 100%;
    margin-top: 28%;
}


.titulo{
    width:100%;
    top: 18%;
    display: flex;
    justify-content: center;
}
p{
	font-size: 30px;
	font-family: Impact, fantasy;
	color: white;
	text-shadow: 3px 2px 2px #CD0000;
}
.campos_login {
    color: white;
    width: 80%;			
}


.dados{
    border-color: #8B0000;
    border-radius: 7px;
    background-color: transparent;
}
#campo_cliente, #campo_email, #campo_senha{
    width: 100%;
    height: 25px;
    border: 0;
    border-radius: 7px;	
    outline: 0;
    background-color: transparent;
    font-size: large;
    color: white;
}
#visualiza_senha{
    background-color: Transparent;
    cursor: pointer;
    border: none;
    float: right;
}
.botao{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
}
#btn_acessar, #btn_enviar_cadastro{
    width: 50%;
    height: 100%;
    border-radius: 7px;	
    border: none;
    font-size: 25px;
	font-family: Impact, fantasy;
    background-color: #8B0000;
	color: white;
    text-shadow: 3px 2px 2px black;
    cursor: pointer;
}
#btn_cadastrar, #btn_voltar{
    width: 50%;
    height: 100%;
    right: -10px;
    border-radius: 7px;	
    border: none;
    font-size: 22px;
	font-family: Impact, fantasy;
    background-color: green;
	color: white;
    text-shadow: 3px 2px 2px black;
    cursor: pointer;
}

.rodape{
	background-color: gray;
	position: fixed;
	width: 100%;
	height: 20px;
	bottom: 0; left: 0; right: 0;
	text-align: center;
	color: white;
}
.notifica_retorno{
    background-color: transparent;
    position: absolute;
    width: 125%;
    height: 100px;
    margin-top: 65px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    z-index:1;
}
.text_notifica{
    position: relative;
    top: 15px;
    font-family: Arial Black;
    font-size: 18px;
    color: #ff0000;
	text-shadow: 3px 2px 2px yellow;
}
.adm_login{
	background-color:Transparent;
	cursor: pointer;		
	border: none;
    bottom: 40px;
    right: 20px;
    position: absolute;
}

#recupera_senha{
    border-bottom: 2px solid;
    cursor: pointer;
}

/* LAYOUT MODAL PROCESSANDO */
#modal_text{
	background-color: rgba(0, 0, 0, 0.6);
	position:fixed; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%; 
	display: none;
	z-index: 99;
}
.global_text{
	width: 300px;
	height: 100px;
	left:50%; top: 50%;
	transform: translate(-50%, -50%);
	background: white;
	position: fixed;
	border-radius: 7px;
} 
.loader_text {
	position: fixed;
	left: 95px;
	top: 3px;
	width: 100%;
	height: 100%;
	background: url('../page_img/engrenagem.gif') center no-repeat;
	background-size: 30%;
}
.text{
	position: absolute;
	top: 5px;
	left: 20px;
	font-size: 30px;
	font-family: Impact, fantasy;
	text-align: center;
	vertical-align:middle;
	display:table-cell;
	color: gray;
	text-shadow: 3px 2px black;
}


@media only screen and (max-width: 990px) {
    .form_login{
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index:1; 
    }
    #btn_acessar{
        top: 115%;
    }
    #btn_cadastrar{
        top: 115%;
    }
    .rodape{
        display: none;
    }
    .notifica_retorno{
        background-color: transparent;
        position: absolute;
        width: 100%;
        height: 50px;
        top: 130px;
        z-index: 3;
        display: block;
    }
    .text_notifica{
        font-size: 15px;
    }
    .adm_login{
        display:none;
    }

}