/* ---HEADER--- */

.adminlogin-header-text {
	position: fixed;
	top: 20vh;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: -1;
	background: transparent;
}

.adminlogin-header-text h1 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(3rem, 12vw, 4rem);
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0.5rem 0;
	line-height: 1.1;
}

.adminlogin-header-text h1 .admin {
	color: #ffffff;
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
	drop-shadow(0 0 40px rgba(200, 200, 255, 0.4));
}

.adminlogin-header-text h1 .login {
	background: linear-gradient(180deg, rgba(210, 145, 245, 1) 0%, rgba(110, 40, 165, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(0 0 20px rgba(155, 70, 215, 0.7))
	drop-shadow(0 0 40px rgba(185, 110, 230, 0.5))
	drop-shadow(0 0 60px rgba(140, 50, 195, 0.3));
}

.adminlogin-header-text h1 .admin,
.adminlogin-header-text h1 .login {
	display: inline-block;
	margin-right: 0.3em;
}


/* ---PASSWORD --- */

.box {
	background: rgba(0, 0, 0, 0.2);
	padding: 50px 60px;
	position: fixed;
	top: 40vh;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 20px;
	border: 3px solid rgba(110, 40, 165, 1);
	box-shadow: 0 0 60px rgba(110, 40, 165, 0.8);
	backdrop-filter: blur(10px);
	max-width: 440px;
	text-align: center;
}

.adminlogin-input, .adminlogin-submit {
	width:100%;
	padding:16px;
	margin:10px 0;
	background:#1a1a2e;
	border:2px solid rgba(110, 40, 165, 1);
	border-radius:12px;
	color: rgba(210, 145, 245, 1);
	font-size:1.1rem;
	box-sizing:border-box;
}

.adminlogin-submit {
	background: transparent;
	color: rgba(110, 40, 165, 1);
	font-size: 1.3rem;
	cursor: pointer;
	transition: 0.3s;
}
.adminlogin-submit:hover {
	background: rgba(110, 40, 165, 1);
	color: #000;
	box-shadow: 0 0 20px rgba(110, 40, 165, 0.8);
}

#status {
	position: fixed;
	top: 45vh;
	left: 50%;
	transform: translateX(-50%);
}
