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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

/* Navbar*/
.navbar {
	background-color: #3498db;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 900;
}
.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}
.navbar a:hover {
	text-decoration: underline;
}

/* Layout */
.layout {
	display: flex;
	justify-content: flex-start;
}

/* Main content */
.content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f9f9f9;
}

.content__description-container {
	max-width: 1200px;
	margin-left: 20px;
	padding: 20px;
	flex: 1;
}

.content__paragraph {
	margin: 15px 0;
}

.content__list-item-title {
	font-weight: 500;
	font-size: 25px;
	margin: 10px 0;
	list-style-type: none;
}

.content__list > span {
	font-weight: 900;
}

.content__list-item {
	margin: 10px 0;
}

.content__list-item--strong {
	font-weight: 800;
}

.content__list-item--margin {
	list-style-type: circle;
	margin-left: 15px;
}

.content__list-item--highlight {
	color: #3498db;
	font-weight: 800;
}

.content__list-item--error {
	color: #940707;
	font-weight: 800;
}

/* Button */
.content__cta-container {
	display: flex;
	justify-content: center;
	margin: 50px 0;
	flex-direction: row;
}

.content__cta--loading::after {
	content: "";
	position: absolute;
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}

.content__cta--button:disabled {
	background-color: gray;
}

.content__cta--button {
	min-width: 215px;
	min-height: 60px;
	position: relative;
	padding: 0 30px;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	background-color: #0078ff;
	border: none;
	border-radius: 30px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	margin: 0 15px;
}

.nofill {
	background-color: gray;
}

.content__cta--loading .content__cta--text {
	visibility: hidden;
	opacity: 0;
}

/* Active state */
.content__cta--button:active {
	background-color: #004a91; /* Darker color on click */
	transform: scale(0.98); /* Slightly shrink the button */

	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Hover effect */
.content__cta--button:not(:disabled):hover {
	background-color: #005bb5; /* Darker shade on hover */
	transform: translateY(-3px); /* Lift effect */
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Focus effect */
.content__cta--button:focus {
}
