html {
	background: radial-gradient(circle, #35393f 0%, #485365 100%);
}

a:link {
  color: #9ab2d9;
}

a:visited {
  color: #515e73;
}

a:hover {
  color: #acc7f2;
}

a:active {
  color: #b5d1ff;
}

body, html {
	color: #7e8997;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	font-family: verdana, tahoma, arial;
	display: flex;
}

h1 {
	font-size: 1.50em;
	padding-bottom: 10px;
}

h2 {
	font-size: 1.10em;
	padding-bottom: 10px;
}

header {
	color: #7e8997;
	text-align: center;
	padding: 10px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

hr {
	margin: 1.875em 0;
	border: none;
	border-bottom: dashed 1px;
}

input {
	background: transparent;
	color: #7e8997;
}

input[type=input] {
	border:none;
	border-bottom: 1px solid #7e8997;
    padding: 5px 10px;
    outline: none;
}

input[type=password] {
	border:none;
	border-bottom: 1px solid #7e8997;
    padding: 5px 10px;
    outline: none;
}

input[type=submit] {
	background: transparent;
	border: 1px solid #7e8997;
    padding: 5px 10px;
    outline: none;
}

form {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-decoration: none;
}

footer {
	background-color: #35393f;
	color: #7e8997;
	text-align: center;
	padding: 10px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

ul {
	padding-left: 50px;
}

li {
	padding-bottom: 10px;
}


p {
	padding-bottom: 10px;
}

#auth {
	color: #7e8997;
	}

#error {
	color: #f96e6b;
	}

#logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	}

#maikeruLogo {
	position: absolute;
	width: 300px; /* Adjust to your image size */
	}

.code {
	color: green;
	font-family: Monaco, monospace;
    font-size: $base-font-size;
    line-height: 100%;
    background-color: #333;
    padding: 0.2em;
    letter-spacing: -0.05em;
    word-break: normal;
    border-radius: 5px;
}

.note {
	padding: 10px;
	background: #f96e6b;
	color: #a92e0b;
	font-weight: bold;
	border: 2px solid #a92e0b;
	border-radius: 10px;
}

.sidebar {
	background: transparent;
	height: 100vh;
	width: 200px;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: auto;
}

.sidebar a {
	padding: 10px 15px;
	text-decoration: none;
	font-size: 18px;
	color: white;
	display: block;
}

.sidebar a:hover {
	background-color: #7e8997;
}

.main-content {
	margin-left: 200px;
	margin-right: 200px;
	margin-top: 100px;
	padding: 20px;
}
