* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', sans-serif;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #f9f9f9;
}

.header {
	padding: 1rem 2rem;
}

.header-line {
	margin-top: 1.5rem;
	border-bottom: 2px solid #245F80;
}

.nav {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}

.nav-link {
	text-decoration: none;
	color: #245F80;
	font-weight: 500;
	padding: 0.4rem 1rem;
}

.btn-acceso {
	padding: 0.4rem 1rem;
	border: 1px solid #245F80;
	border-radius: 8px;
	text-decoration: none;
	color: #245F80;
	font-weight: 500;
	transition: background 0.3s;
}

.btn-acceso:hover {
	background: rgba(0, 51, 78, 0.05);
}

.main-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	max-width: 400px;
	width: 100%;
	height: auto;
}

.footer {
	padding: 1rem 2rem;
	border-bottom: 30px solid #245F80;
}

.footer-link {
	text-decoration: none;
	color: #245F80;
	font-weight: 500;
}
