@charset "utf-8";
/* CSS Document */

.sec-form{
	width: 100vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.container-form{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 5em 0;
}
.title-form{
	font-size: 30px;
	line-height: 140%;
	margin-bottom: 3em;
}
.sec-agradecimento{
	width: 100vw;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	align-self: center;
}
.container-agradecimento{
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.title-agradecimento{
	font-size: 40px;
	line-height: 140%;
}
form {
	width: 500px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
	margin-bottom: 5px;
	padding: 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

input[type="submit"] {
	padding: 10px 20px;
	border: none;
	cursor: pointer;
}

@media only screen and (max-width: 1280px){
	form {
		width: 100%;
	}
}
	
@media only screen and (max-width: 1024px){
	.container-form{
		width: 80%;
		flex-direction: column;
		justify-content: space-between;
	}
}

@media only screen and (max-width: 800px){
	.title-agradecimento{
		font-size: 35px;
		line-height: 140%;
	}
	.title-form{
		font-size: 25px;
	}
	form {
		width: 100%;
	}
}
