html, body
{
    width: 100%;
	height: 100%;
	margin-top: 0px;
	margin-left: 0px;
    font-family: "Roboto";
    overflow-x: hidden;
}

html
{
	background-image: url('../../imagens/little-girl.jpg');
    background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #bdab9d;
}

h2
{
	text-align: left;
	margin-left: 25px;
}

#logo
{
    width: 150px;
    height: auto;
    background-color: transparent;
}

.div_elem_centralize
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 25px;
}

section
{
    position: relative;	
	padding-top: 15px;
	padding-bottom: 30px;
	border-radius: 10px;
	margin-bottom: 50px;
	margin-left: 15%; 
	width: 70%; 
	height: auto; 
	overflow: hidden; 
	background-image: linear-gradient(to right, rgba(204, 219, 198, 0.6), rgba(255, 255, 255, 0.6));
	box-shadow: -5px 5px 10px black; 
}

#login
{
    background-color: rgba(255, 255, 255, 0.5);    
    background-image: "";
    
    padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 10px;
	margin-left: 10%; 
	width: 80%; 
	height: auto; 
	overflow: hidden; 
}

p
{
	opacity: 1;
	margin-left: 5%;
	margin-top: 50px;
	width: 90%;
	font-size: 20px;
	font-weight: 900;
	text-align: justify;
	/*transition: 0.5s all;*/
}

input[type="submit"]
{
	margin-top: 50px;
	margin-left: 10%;
	width: 80%;
	margin-bottom: 25px;
	height: 35px; 
	border-radius: 5px; 
	font-size: 17px;
	background-image: linear-gradient(to right, rgba(0, 198, 117, 0.7), rgba(0, 161, 156, 0.7));
	color: black;
	transition: all .8s;
}

input[type="submit"]:hover
{
	color: white;
	background-image: linear-gradient(to right, rgba(5, 156, 93, 0.7), rgba(2, 126, 122, 0.7));
}

.insercao
{
	margin-top: 25px;
	margin-left: 10%;
	width: 80%; 
	height: 35px; 
	border-radius: 5px; 
	text-align: center; 
	font-size: 17px;
    border: 1px gray;
	background-color: rgba(76, 72, 72, 0.9);
	background: linear-gradient(currentColor, currentColor) bottom / 0 .1em no-repeat;
	transition: 0.5s background-size;	
	color: black;
}

.insercao:focus
{
	border: 0.5px gray;
	outline: 0;
	background-size: 100% .1em;
}

