html,
body {
	font-family: Helvetica;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

body {
	background: url("/img/background.jpg") center / cover no-repeat fixed;
	color: #ffffff;
}

.container {
	width: 80%;
	padding: 20px;
	background-color: rgba(20, 20, 20, 0.63);
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
	text-align: center;
	margin-bottom: 20px;
}

p {
	line-height: 0.2;
	text-align: center;
}

.login {
	text-align: center;
	margin-top: 20px;
}

.btn {
	display: block;
	margin: 20px auto;
	padding: 12px 70px;
	font-weight: semi-bold;
	font-size: 16px;
	color: #ffffff;
	background: rgba(58, 58, 58, 0.281);
	border-color: rgb(83, 83, 83);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.lgn,
.pwd {
	width: 100%;
	background: rgba(40, 40, 40, 0.8);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	border-radius: 6px;
	padding: 12px 1px;
	margin-top: 10px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.lgn::placeholder,
.pwd::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.lgn:hover,
.pwd:hover {
	background: rgba(50, 50, 50, 0.9);
}

.lgn:focus,
.pwd:focus {
	background: rgba(55, 55, 55, 1);
	border-color: #474747;
}

.btn:hover {
	background-color: #707375;
}

.status {
	text-align: center;
	margin-top: 10px;
	font-size: 14px;
	min-height: 20px;
}

.status.error {
	color: #ff4444;
}

.status.success {
	color: #44ff44;
}