* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

/* Video di sfondo */
#background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

/* Immagine-mock di sfondo */
.mock-image-bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

/* Contenitore login */
.login-container {
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	width: 320px;
	position: relative;
	z-index: 1;
}

.logo {
	width: 200px;
	height: auto;
	margin-bottom: 10px;
}

.test-logo {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}

h2 {
	margin-bottom: 20px;
}

.input-group {
	margin-bottom: 15px;
	text-align: left;
}

.input-group label {
	font-weight: bold;
}

.input-group input {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

button {
	background: #007BFF;
	color: white;
	border: none;
	padding: 10px;
	width: 100%;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

button:hover {
	background: #0056b3;
}