.checkbox-label {
	display: flex;
	align-items: start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
	content: '✓';
	position: absolute;
	top: -2px;
	left: 2px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.error-message {
	display: none;
	color: var(--danger-color);
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

.error-message.show {
	display: block;
}

.form-alert {
	display: none;
	padding: 1rem;
	border-radius: var(--border-radius);
	margin-top: 1rem;
}

.form-alert.show {
	display: block;
}

.form-alert.success {
	background: rgba(39, 174, 96, 0.1);
	color: var(--success-color);
	border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-alert.error {
	background: rgba(231, 76, 60, 0.1);
	color: var(--danger-color);
	border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Footer */
.footer {
	background: var(--bg-dark);
	color: var(--text-white);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: var(--text-white);
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition-fast);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
	color: var(--text-white);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
	margin: 0.25rem 0;
}

.footer-note {
	font-size: 0.9rem;
}

.footer-note i {
	color: var(--success-color);
	margin-right: 0.5rem;
}

/* Spinner Animation */
.spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top: 2px solid currentColor;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 0.5rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nav-container {
		grid-template-columns: auto 1fr auto;
		gap: 1rem;
	}

	.header-login-fields {
		gap: 0.25rem;
	}

	.header-login-fields input {
		width: 100px;
		font-size: 0.85rem;
	}

	.header-login-fields input:focus {
		width: 120px;
	}

	.btn-header-login .btn-text {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav-container {
		grid-template-columns: auto auto;
		gap: 1rem;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.header-auth {
		grid-column: 1 / -1;
		justify-self: center;
		margin-top: 0.5rem;
		padding-bottom: 0.5rem;
		border-top: 1px solid var(--border-light);
		padding-top: 0.5rem;
	}

	.header-login-fields {
		justify-content: center;
	}

	.header-login-fields input {
		width: 130px;
	}

	.btn-header-login .btn-text {
		display: inline;
	}

	.header-alert {
		position: fixed;
		top: 80px;
		left: 1rem;
		right: 1rem;
		margin-top: 0;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-text .subtitle {
		font-size: 1.1rem;
	}

	.notice-main {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
		padding: 1.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.demo-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.pricing-card.featured {
		transform: none;
	}

	.quick-auth-card {
		margin: 0 1rem;
	}
}

@media (max-width: 480px) {
	.nav-container {
		padding: 0 1rem;
	}

	.container {
		padding: 0 1rem;
	}

	.hero-text h1 {
		font-size: 2rem;
	}

	.feature-card {
		padding: 2rem;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.notice-main {
		padding: 1rem;
	}

	.auth-card {
		margin: 0;
	}

	.auth-form-single {
		padding: 1.5rem;
	}

	.header-login-fields {
		flex-direction: column;
		gap: 0.5rem;
	}

	.header-login-fields input {
		width: 200px;
	}
}

/**
 * Footer Link Fix - Fügen Sie dieses CSS zu Ihrer landing3.css hinzu
 * oder erstellen Sie eine separate CSS-Datei
 */

/* Footer Links in normaler Textfarbe */
.footer-section span a {
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.footer-section span a:hover,
.footer-section span a:focus,
.footer-section span a:visited {
	color: rgba(255, 255, 255, 1) !important;
	text-decoration: underline;
}

/* Alternative: Wenn Sie den Link etwas heller haben möchten */
.footer-section span a.highlighted-link {
	color: #ffffff !important;
	text-decoration: underline;
	font-weight: 500;
}

.footer-section span a.highlighted-link:hover,
.footer-section span a.highlighted-link:focus,
.footer-section span a.highlighted-link:visited {
	color: #ffffff !important;
	opacity: 0.9;
}