* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

main#container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#container form {
	background-color: white;
	border-radius: 15px;
}

form {
	width: 400px;
	padding: 20px 50px;
}

.title-form img{
	width: 100%;
	height: 100px;
	margin-bottom: 20px;
}

form label {
	font-weight: bold;
	color: #404040;
}

form input, form button{
	width: 100%;
	border: 2px solid #595959;
	border-radius: 2px;
}

form input {
	font-weight: 500;
}

form button {
	color: white;
	background-color: #ce1919;
	padding: 5px 0;
}

form button:hover {
	cursor: pointer;
	background-color: #ac1212;
	transition: .3s linear;
}