#login-bar {
	width: 100%;
	background-color: #008080;
	color: white;
	font-family: "Segoe UI", Roboto, "Courier New", monospace;
	padding: 8px 16px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	margin-top: 0;
	margin-bottom: 0;
	max-width: 1200px;
}

.login-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 1200px;
	text-align: center;
}

.login-form label {
	color: white;
	font-size: 14px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
	height: 28px;
	border: none;
	border-radius: 4px;
	padding: 0 8px;
	font-size: 14px;
	margin-left: 4px;
}

.btn-login,
.btn-primary-login {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 4px;
	text-decoration: none;
	color: white;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: background 0.2s;
	font-size: 13px;
	cursor: pointer;
}

.btn-login:hover,
.btn-login:focus {
	background-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-login {
	background-color: #004c4c;
	border: none;
}

.btn-primary-login:hover {
	background-color: #006666;
}

.user-info {
	font-weight: 600;
	font-size: 14px;
}

.separator {
	opacity: 0.5;
}

.brand {
	font-weight: bold;
}

.datetime {
	font-size: 15px;
	opacity: 1;
}

#login-bar a:link {
	color: rgb(255, 255, 255);
	text-decoration: undreline;
}
#login-bar a:visited {
	color: rgb(255, 255, 255);
	text-decoration: undreline;
}
#login-bar a:hover {
	color: rgb(255, 255, 255);
	text-decoration: undreline;
}

/* --- Responsive --- */
@media (max-width: 700px) {
	.login-form {
		flex-direction: column;
		gap: 6px;
	}

	.separator {
		display: none;
	}
}
