	body {
		text-align: center;
		font-family: Arial, sans-serif;
		background-color: pink;
		color: blue;
	}
	
	.contenedor {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 30px;
		margin-top: 40px;
	}

	.izquierda,
	.derecha {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	input {
		width: 200px;
		height: 50px;
	}

	.derecha div {
		width: 200px;
		height: 45px;
		border: 1px solid black;
		padding: 5px;
		text-align: left;
		background-color:white;
	}

	button {
		height: 40px;
		cursor: pointer;
		cursor: pointer;
	}


	.enlace {
		display: block;
		margin-top: 40px;
		text-align: center;
		text-decoration: none;
		font-weight: bold;
		color: #0066cc;
	}

	.enlace:hover {
		text-decoration: underline;
	}
	
	
