body {
	background: linear-gradient(to bottom right, #fdf6f9, #f3e6f1);
	background-attachment: fixed;
	background-size: cover;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
}

/* Contenedor principal del formulario */
.registro {
	width: 600px;
	max-width: 90%;
	background-color: #ffe6f0;
	margin: 100px auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 40px 30px;
	border-top: 10px solid #ecbae6;
	border-radius: 12px;
	color: #333;
}

/* Título */
h3 {
	text-align: center;
	padding: 15px;
	font-size: 28px;
	color: #6e1ed6;
}

/* Estilo de los enlaces dentro del contenedor */
.registro a {
	color: #6e1ed6;
	text-decoration: none;
	font-size: 18px;
}

.registro a:hover {
	text-decoration: underline;
}

/* Inputs */
.control2,
.nom,
.contraseña2 {
	width: 100%;
	height: 45px;
	border: 2px solid #ccc;
	border-radius: 6px;
	margin-bottom: 20px;
	padding: 10px 15px;
	background: white;
	font-size: 18px;
	color: #333;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

input.control2:hover,
.nom:hover,
.contraseña2:hover {
	background-color: #fff8dc;
	box-shadow: 0 0 10px rgba(255, 223, 70, 0.5);
}

/* Botón */
.button {
	width: 100%;
	height: 55px;
	background-color: #6e1ed6;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button:hover {
	background-color: #5011a1;
}

/* Texto final (registro2) */
.registro2 {
	font-size: 16px;
	color: #555;
	text-align: center;
	margin-top: 20px;
}
