﻿body {
	font: 100% 'Lato', sans-serif;
	font-size: 16px;
	background-color: #ededed;
	background-image: url(../img/bg-test.png);
}

footer {
	display: none;
}

main {
	display: block;
	max-width: 980px;
	margin: 20px auto;
}

main > div {
	background: #dedede;
	padding: 10px;
	border-radius: 6px;
	margin-top: 20px;
}

h1 {
	font-size: 60px;
	color: #518090;
	margin: 15px 0 0 0;
}

h2 {
	font-size: 30px;
	color: #518090;
	margin: 0;
	padding: 0;
}

a {
	font-weight: bold;
	color: #518090;
	cursor: pointer;
	text-decoration: none;
}
	a:hover {
		border-bottom: 1px dotted #518090;
	}

input {
	border: 1px solid #999;
	border-radius: 6px;
	background-color: #fff;
	padding: 4px 6px;
	font: 100% Lato, sans-serif;
	color: #444;
	font-size: 16px;
	resize: none;
	background: linear-gradient(to bottom, #f7f7f8 0, #fff 100%);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2) inset, 0 -1px 0 rgba(0, 0, 0, .05) inset;
	border-radius: 3px;
	color: #222;
}

input[type=number] {
	width: 150px;
}

button {
	border-radius: 6px 6px 6px 6px;
	font-size: 16px;
	line-height: 24px;
	padding: 3px 7px;
	cursor: pointer;
	color: #fff;
	border: 1px solid #626262;
	position: relative;
	font-family: Lato, sans-serif;
	background: #696969;
	background: linear-gradient(to bottom,#767676 0,#696969 100%);
	background-color: #767676;
	text-shadow: 1px 1px 1px #5d5d5d;
	color: #fff;
}

	button:hover {
		border-color: #555;
		color: #fff;
		background: linear-gradient(to bottom,#696969 0,#555 100%);
		background-color: #696969;
	}
.margin-bottom {
	margin-bottom: 10px;
}
.margin-top {
	margin-top: 10px;
}

.error {
	background: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	border: 2px solid red;
}

.choose-user {
	background: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
	.choose-user .choose-user-buttons {
		text-align: right;
		flex: 1 1 auto;
		white-space: nowrap;
	}

	.choose-user:hover {
		background: #518090;
		color: #fff;
		cursor: pointer;
	}

		.choose-user:hover h2 {
			color: #fff;
		}
		.choose-user:hover a {
			color: #fff;
		}
		.choose-user:hover a:hover {
			border-bottom-color: #fff;
		}

.custom-user {
	display: block;
	background: #eee;
}
	.custom-user:hover {
		background: #fff;
		color: #000;
	}

		.custom-user:hover h2, .custom-user:hover a {
			color: #518090;
		}

		.custom-user:hover a:hover {
			border-bottom-color: #518090;
		}

.custom-user-login-wrapper {
	display: flex;
}
#customUserSpecificationWrapper .instructions {
	margin-bottom: 10px;
}

.customUserSpecificationFormWrapper {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	margin-bottom: 10px;
}

	.customUserSpecificationFormWrapper div {
		width: 270px;
		padding-right: 30px;
	}

	.customUserSpecificationFormWrapper input {
		width: 100%;
		display: block;
	}

	.customUserSpecificationFormWrapper label {
		width: 100%;
		display: block;
		margin-top: 5px;
	}


.advanced-wrapper {
	padding: 10px 20px 0 20px;
	margin-top: 10px;
	border-top: 1px solid #ccc;
}

.advanced {	
	display: none;
}
.advanced strong {
	display: block;
}