.main-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 90px 20px 20px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 20vh;
	box-sizing: border-box;
}

.content-card {
	background: #fff;
	border-radius: 10px;
	padding: 30px 40px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	max-width: 900px;
	width: 100%;
	text-align: center;
}

.content-title {
	font-size: 1.5rem;
	color: #0943B5;
	font-weight: 700;
	margin-bottom: 8px;
}

.content-description {
	font-size: 1rem;
	color: #555;
	margin-bottom: 15px;
}

.content-title-main {
	font-size: 2rem;
	color: #0943B5;
	font-weight: 800;
	margin-bottom: 20px;
}

.access-button {
	background: linear-gradient(145deg, #0943B5, #004080);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-size: 1.25rem;
	font-weight: 700; /* Letra gruesa */
	padding: 16px 30px;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra fuerte */
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

@media ( max-width : 600px) {
	.content-card {
		padding: 20px;
		max-width: 95%;
	}
}

.access-button:hover {
	background: linear-gradient(145deg, #0943B5, #5564eb);
	transform: scale(1.05);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.footer {
	overflow: hidden;
	background-color: #0943B5;
	color: white;
	padding: 10px 0;
	text-align: center;
	margin: 0;
}

.footer-links a {
	color: #cfd8dc;
	margin: 0 12px;
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-text {
	font-size: 0.85rem;
	color: #b0bec5;
	margin-top: 10px;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
}

.main-content {
	flex: 1;
}

