@font-face {
	font-family: 'Gotham';
	src: url('GothamHTF-Medium.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham';
	src: url('GothamHTF-Bold.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
}

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

h1 {
	font-size: x-large;
}

body {
	font-family: 'Gotham', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: url('Logo fortuna favet/cards.jpg') center/cover no-repeat fixed;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('Logo fortuna favet/cards.jpg') center/cover no-repeat fixed;
	filter: blur(8px);
	z-index: -1;
}

.container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 450px;
	width: 100%;
	padding: 40px 30px;
	text-align: center;
	opacity: 0.95;
}

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

.content {
	padding: 40px 0;
}

.message {
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	margin: 10px 0;
}

#passwordForm {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

#passwordInput {
	padding: 15px;
	font-size: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	transition: all 0.3s ease;
	outline: none;
	width: 90%;
}

#passwordInput:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

button {
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	color: white;
	background: #bf1014;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: fit-content;
}

button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

button:active {
	transform: translateY(0);
}

.error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 15px;
	display: none;
	font-weight: 500;
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px);
	}
}

.shake {
	animation: shake 0.5s ease-in-out;
}

/* Responsive design */
@media (max-width: 600px) {
	.container {
		padding: 30px 20px;
	}

	.content h1 {
		font-size: 24px;
	}

	.logo {
		max-width: 200px;
	}
}
