/* Estilos generales del cuerpo */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Wrapper para centrar el contenido */
.login-wrapper {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
}

/* Contenedor principal del formulario */
.login-container {
	background-color: #ffffff;
	padding: 2.5rem 3rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 420px;
	text-align: center;
}

/* Título */
h1 {
	color: #1c1e21;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
}

/* Estilos para los campos del formulario */
form div {
	margin-bottom: 1.2rem;
	text-align: left;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	color: #606770;
	font-weight: 600;
	font-size: 0.95rem;
}

input[type="text"], input[type="email"], input[type="password"] {
	width: 100%;
	padding: 0.85rem;
	border: 2px solid #dddfe2;
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box;
	transition: all 0.3s ease;
	background-color: #ffffff;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus
	{
	border-color: #667eea;
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Botón de envío */
button[type="submit"] {
	width: 100%;
	padding: 0.85rem;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

button[type="submit"]:active {
	transform: translateY(0);
}

/* Mensajes de error y logout */
.error-message {
	color: #d93025;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: 0.85rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.logout-message {
	color: #0f5132;
	background-color: #d1e7dd;
	border: 1px solid #badbcc;
	padding: 0.85rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

/* Enlace de registro */
.registro-link {
	margin-top: 1.5rem;
	font-size: 0.95rem;
	color: #606770;
}

.registro-link a {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
}

.registro-link a:hover {
	text-decoration: underline;
}

/* Responsive */
@media ( max-width : 480px) {
	.login-container {
		padding: 2rem 1.5rem;
	}
	h1 {
		font-size: 1.75rem;
	}
}