@charset "utf-8";
/* CSS Document */

@font-face{
    font-family: google sans regular;

    /*Caso a fonte esteja na mesma pasta*/
    src: url("../../fonts/OpenSans-Light.ttf");} 


*{
	padding: 0;
	margin: 0;
    font-family: 'google sans regular';
}


.bg{
	width: 98vw;
	height: 100vh;
	background:#d3ebff;
}

.login{
	width: 40%;
	height: 50vh;
	border-radius: 1em;
	background: white;
	text-align: center;
	margin: 0 auto;
	position:relative;
	top: 20%;
	box-shadow: 1em 1em gray;

}

.login h1{
    position: relative;
    top: 5%;

}

.cadastro {
    position: relative;
	margin: 10% 10% ;
	
	
}

input {
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0;
    text-align: center;
    font-size: 15px;
	border-radius: 1em;
	border: 1px solid gray;

	
}

input:focus {
	outline-color:rgb(236, 131, 129);
	
}

#buton{
	width: 100%;
	background: lightblue;
	cursor: pointer;
	border: none;
	transition: all .5s;

    
}

#buton:hover {
	background: #011D2F;
	color: white;
    box-shadow: 1px 1px 10px gray;
}