@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	height: 100vh;
	background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);

}


#home {
	width: 100%;
	max-width: 900px;
	min-height: 50vh;
	padding: 10px;
	text-align: center;
	color: #000;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 5px 5px 10px;
	margin: 50px auto;
}

#home .container h2 {
	font-size: 26px;
	font-weight: bolder;
	letter-spacing: 1.2px;
	color: #000;
	text-transform: uppercase;
	margin: 30px 0 30px 0;
}


form input {
	width: 40vw;
	text-align: center;
	height: 40px;
	margin-bottom: 10px;

}

label {
	width: 40vw;
	text-align: center;
	height: 40px;
	margin-bottom: 10px;
}



form button {
	width: 30vw;
	height: 40px;
	background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
	border: none;
	color: #fff;
	font-weight: #333;
	text-transform: uppercase;
	border-radius: 5px;
	font-size: 16px;
	transition: all 0.3s ease;
}

form button:hover {
	background: linear-gradient(-90deg, #1CB5E0 0%, #000851 100%);
}


/* style do menu */

#menu {
	width: 100%;
	max-width: 800px;
	border-radius: 5px;
	height: 180px;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
}

#menu ul {
	text-align: center;
	margin-right: 20px;

}

#menu ul li {
	display: inline-block;
	text-align: center;
	line-height: 80px;
	margin: 0 20px;
}

#menu ul li a {
	color: #fff;
	padding: 7px 10px;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
}

a.active,
a:hover {
	border-bottom: 1px solid #fff;
	transition: .5s;
}

/*
.checkbtn {
	font-size: 30px;
	color:#fff;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor:pointer;
}
#check {
	display:none;
}

@media (max-width: 800px) {
#menu ul li a {
	font-size: 16px;
}
}

@media (max-width: 858px) {
	.checkbtn {
		display:block;
	}
ul {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 80px;
	left: 0;
}	
}
*/