﻿html, body {
	background-color: black;
	color: white;
	font-size: 20px;
}
body {
	font-family: 'Open Sans';
	margin: 8px;
}
h1 {
	margin: 0;
	font-size: 30px;
}
p {
	margin: 0;
}
a, a:visited {
	color: rgb(0,200,0);
	text-decoration: none;
	transition: color 0s ease-out;
}
a:hover {
	color: rgb(0,255,0);
	transition: color 0.5s ease-out;
}
ul {
	margin: 0;
	padding-left: 0;
}
li:before {
	content: "\00BB\00a0";
}
li {
	list-style-type: none;
}

.semleb-textbox {
	margin: 3px;
	padding: 4px 5px;
	box-shadow: inset 0 1px 1px #dddddd;
	border: 1px solid #dddddd;
	border-radius: 3px;
	box-sizing: border-box;
	appearance: textfield;
	-webkit-appearance: textfield;
	font-family: 'Open Sans';
	font-size: 15px;
	font-weight: bold;
}

.semleb-textbox-login {
	text-align: center;
}

.semleb-textbox-login::placeholder {
	font-weight: normal;
	color: #bbb;
}

.semleb-button {
	padding: 2px 5px;
	font-size: 15px;
	font-family: 'Open Sans';
	color: white;
	margin: 3px;
	background: linear-gradient(to bottom, #3b679e 0%,#2b88d9 50%,#207cca 51%,#7db9e8 100%);
	border: 1px solid #3b679e;
	border-radius: 3px;
}

.FormContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
	max-height: 80vh;
}
#LoginForm {
	width: 200px;
	text-align: center;
}
#Username, #Password {
	width: 100%;
}

label[for=RememberMe] {
	font-size: 16px;
}
#LoginForm > .validation-summary-errors {
	font-size: 12px;
	text-align: left;
}
#LoginForm > .validation-summary-errors ul {
	padding-left: 20px;
}

.FilesTable th {
	text-align: left;
}
.FilesTable th, .FilesTable td {
	padding: 0;
	padding-right: 20px;
}
.FilesTable tr td:nth-child(2), .FilesTable tr th:nth-child(2) {
	text-align: right;
}
.FilesTable tr td:nth-child(1) {
	line-height: 27px;
	display: inline-flex;
	vertical-align: middle;
}