body {
	background: #111111;
	margin: 0px;
	transition: background 0.5s;
}

main {
	padding: 25px;
	position: fixed;
	width: 350px;
	height: 200px;
	background: #181818;
	left: calc(50% - 200px);
	top: calc(50% - 125px);
	box-shadow: 0px 0px 15px #00000099;
	border-radius: 5px;
}

#commentField {
	display: none;
}

.loginlogo {
	height: 100px;
	width: 100%;
	margin-bottom: 10px;
	background-image: url("/images/logo.png");
}

form {
	position: relative;
	text-align: right;
}

input {
	display: inline-block;
}

#nameField {
	width: calc(100% - 20px);
	padding: 10px;
	font-size: 14px;
	/* margin-bottom: 15px; */
}

.maildomain {
    background-color: #252525;
    text-align: center;
    color: #AAAAAA;
    user-select: none;
    padding: 0px 8px;
    font-size: 14px;
}

table {
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.button-primary {
	padding: 10px 15px;
	/* margin-top: 15px; */
	border-radius: 5px;
}

#lasti {
	text-align: left;
	font-size: 12px;
	color: #aaa;
	text-decoration: none;
	display: none;
}

#lasti:hover {
	color: #eee;
}

.submittable {
	margin-top: 15px;
}

@media screen and (max-width: 500px) {
	body {
		background: #181818;
	}

	main {
		width: calc(100% - 40px);
		left: 0px;
		padding: 10px 20px;
		background: none;
		box-shadow: none;
	}
}