.contacto {
	width: 100%;
	height: auto;
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10%;
}

.contacto__form {
	width: 100%;
	height: auto;
	padding: 1rem;
	border: 1px solid rgba(128, 128, 128, 0.1);
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 0.3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.contacto__form label {
	display: flex;
	flex-direction: column;
}

.contacto__form label :where(input, textarea) {
	border-radius: 0.3rem;
	padding: 5px 10px;
	border: none;
	outline: none;
	background-color: rgba(194, 194, 194, 0.3);
}

.contacto__form label textarea {
	resize: vertical;
	height: 200px;
}

.contacto__form button {
	padding: 10px;
	background-color: rgba(194, 194, 194, 0.6);
	border-radius: 0.3rem;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.contacto__form button:hover {
	opacity: 0.8;
}

.contacto__form button:has(:disabled) {
	pointer-events: none;
}