.div-form {
	background-color: var(--secondary-background);
	position: relative;
	font-family: Century Gothic;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 0 3%;
}

.div-form div:has(> input:not([type="hidden"]):not([type="submit"])) {
	position: relative;
	width: 100%;
}

.div-form div:has(> input:not([type="hidden"]):not([type="submit"])) label {
	position: relative;
	width: 100%;
	padding: 0 1.5%;
	font-size: 1.2em;
}

.div-form input,
.div-form textarea {
	position: relative;
	width: 100%;
	height: 2.7em;
	padding: 2% 2%;
	margin: 5px 0 0 0;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.div-form textarea {
	height: auto;
}

.div-form input:focus,
.div-form textarea:focus,
.div-form select:focus {
	border-color: #4a90e2;
	outline: none;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.div-form select {
	position: relative;
	height: 1.8em;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

#searchPaises {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.optionsList {
	list-style: none;
	padding: 0;
	margin: 5px 0 0;
	border: 1px solid #ccc;
	border-radius: 8px;
	max-height: 300px;
	overflow-y: auto;
	display: none;
	background: white;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.optionsList li {
	padding: 10px;
	cursor: pointer;
}

.optionsList li:hover,
.optionsList li.active {
	background-color: #4a90e2;
	color: white;
}

.div-bttnEnviar {
	position: relative;
	margin: 1% auto;
}

input.bttnEnviar {
	position: relative;
	width: 100%;
	padding: 1% 2%;
	color: white;
	background-color: var(--background-buttons);
	font-size: clamp(14px, 2.5vw, 18px);
	font-family: "Century Gothic", sans-serif;
	border: none;
	border-radius: 0.5em;
	cursor: pointer;
	box-shadow: 2px 3px 2px 0px #899599;
	transition: all 0.2s ease;
}

input.bttnEnviar:hover {
	background-color: var(--background-buttons-hover);
	transform: translateY(-2px);
}

input.bttnEnviar:active {
	transform: translateY(0);
}

@media(max-width: 800px) {
	.div-form div:has(> input:not([type="hidden"]):not([type="submit"])) label {
		font-size: 1.1em;
	}

	.div-form input,
	.div-form textarea {
		height: 2.6em;
	}
}

@media(max-width: 590px) {
	.div-form {
		margin: 5% auto 1.2%;
		display: flex;
		flex-direction: column;
	}

	.div-form div:has(> input:not([type="hidden"]):not([type="submit"])) label {
		font-size: 1em;
	}

	.div-form input,
	.div-form textarea {
		height: 2.2em;
	}
}

@media(max-width: 450px) {
	.div-form div:has(> input:not([type="hidden"]):not([type="submit"])) label {
		font-size: 1em;
	}

	.div-form input,
	.div-form textarea {
		height: 2.2em;
	}
}