@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400&display=swap'); /* Importar Be Vietnam Pro */


/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

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

* {
	box-sizing: border-box;
}

/* Add some styles for body*/
body {
	min-height: 100vh;
	max-width: 1280px;
	margin: 0 auto;
	background: #020617;
	color: #cbd5e1;
	display: flex;
	flex-direction: column;
	background: url('../images/background.svg') no-repeat center center;
	background-size: cover;
}

nav {
	margin: 30px 40px;
}

h1 {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 4rem; /* 64px */
	color: white;
}

h2 {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 2rem; /* 32px */
	color: white;
}

body, input, textarea {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 1rem; /* 16px */
}

label {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 0.875rem; /* 14px */
	color: white
}

.button-text {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 1.25rem; /* 20px */
	color: #4036A9;
	font-weight: 600;
	cursor: pointer
}

header, main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.titles {
	margin-bottom: 80px;
	max-width: 670px;
}

form {
	max-width: 810px;	
	width: 90%;
	margin: 0 auto;
}

.grid-card {
	background-color: #FFFFFF33;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.grid-item-5 {
	grid-column: span 2 / span 2;
	grid-row: span 2 / span 2;
}

.grid-item-6 {
	grid-column: span 2 / span 2;
}
 

.inputs {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

select {
	height: 70px;
	padding: 15px;
	border-radius: 15px;
	border: none;
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 1rem;
	background-color: #FFFFFFFF;
}

input, textarea, button, select {
	width: 100%;
	height: 70px;
	padding: 20px;
	border-radius: 15px;
	border: none;
}

textarea {
	height: 200px;
}

@media (max-width: 825px) {
	h1 {
		font-size: 3rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}

	form {
		width: 100%;
	}

	nav {
		margin: 30px 80px !important;
	}

	.grid-card {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 30px;
	}
	
	.grid-item-5 {
		grid-column: span 1;
		grid-row: span 2;
	}
	
	.grid-item-6 {
		grid-column: span 1;
	}
}