@CHARSET "UTF-8";

div.loginPanel,
div.loginPanel input {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.32em;
}

input[type="text"], input[type="password"], select[size="1"] {
    border-radius: 5px 5px;
    border: 1px solid #AAAAAA;
    font-size: 1em;
    padding: 0.54em 0.5em 0.46em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a.button, button {
    display: block;
    border-radius: 5px 5px;
    border: 1px solid #AAAAAA;
    background-color: #AAAAAA;
    color: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.54em 1em 0.46em;
    font-size: 1em;
    font-weight: bold;
    text-shadow: none;
    text-decoration: none;
    text-align: center;
}

a.button.easy:hover, button.easy:hover {
    background-color: #3289e2;
}
a.button.easy, button.easy {
    background-color: #0D58A6;
    color: white;
}
a.button:hover, button:hover {
    background-color: #FFC500;
    box-shadow: 0em 0em 0.6em rgba(255, 213, 0, 1);
}

.rounded {
	 border-radius: 5px 5px;
	 -moz-border-radius: 5px;
	 -webkit-border-radius: 5px;
}

.shadow {
	-webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

div.loginPanel {
	max-width: 340px;
	padding: 1em 2em;
	border: 1px solid black;
	margin: 4em auto;
	background-image: url('comb.bg.G20.png');
}

div.formRow {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: stretch;
	flex-wrap: nowrap;
	margin-bottom: 0.35em;
}

div.formRow div.label {
	flex: 0 0 200px;
}

div.loginPanel div.formRow div.label {
	flex: 0 0 90px;
}

div.loginPanel div.formRow div.input {
	flex: 1 1 auto;
}

div.loginPanel div.formRow div.input input {
	width: 100%;
	box-sizing: border-box;
}

div.loginPanel div.button button {
	margin-left: 0.5em;
}

div.loginMessages {
	max-width: 300px;
	padding: 1em 2em;
	border: 1px solid red;
	margin: 4em auto;
	background-color: #FFEEEE;
}

