* {
	margin: 0px;
	padding: 0px;
}

body {
	background-color: lightgray;
	font-family: 'Oswald', sans-serif;
}

a {
	color: red;
	text-decoration: none;
}

a:hover {
	color: darkred;
}

.cabecalho {
	background-color: #363636;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;	
	padding: 15px;
}

.formulario {
	text-align: center;
}

.logo {
	font-size: 2em;
}

.vermelho {
	color: red;
}

.menu-registro {
	width: 100px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 600px) {
	.cabecalho {
		height: 120px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	.logo {

	}
}