<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	background-color: #89CFF0;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	font-family: verdana;
}

form{
	text-align: center;
	border: 3px solid #0D47A1;
	margin-top: 150px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 100px;
	padding-right: 100px;
	background: #DDE9F5;
	border-radius: 15px;
	box-shadow: 0px 0px 15px #0D47A1;
}

h1{
	margin-top: 0px;
	margin-bottom: 40px;
}

.texto, select, option{
	border: 2px solid #FFCF70;
	border-radius: 5px;
	transition: all 0.3s ease;
}

input:hover{
	box-shadow: 0px 0px 5px #0D47A1;
}

select:hover{
	box-shadow: 0px 0px 5px #0D47A1;
}

#inputNombre{
	margin-right: 100px;
}

#enviar{
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: black;
	transition: all 0.3s ease;
	font-weight: bold;
}

#enviar:hover{
	box-shadow: 0px 0px 5px black;
}

fieldset{
    display: flex;
    align-items: center;
    text-align: center;
}

legend{
    font-weight: bold;
}

#ingles{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 100px;
	cursor: pointer;
}

#espaÃ±a{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 75px;
	cursor: pointer;
}</pre></body></html>