html {
	background-color: rgba(34,175,176,1.0);
	background: -webkit-linear-gradient(top, rgba(104,144,173,1) 0%,rgba(102,126,153,1) 100%) no-repeat center center fixed;
	background: -moz-linear-gradient(top, rgba(104,144,173,1) 0%,rgba(102,126,153,1) 100%) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body {
	font-family:  "DejaVu Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 10px;
	background: none;
}

header {
	margin: 10px 0 !important;
}

footer {
	clear: both;
	color: white;
	font-size: 10px;
	text-align: right;
	margin: 10px 20px;
}

h1 {
    color: white;
    font-family: inherit;
    font-weight: 500;
	margin: 0.2em 0;
	font-size: 1.5em;
    text-rendering: optimizelegibility;
    flex-grow: 1;
}

a {
	color: #BEE6F0;
	text-decoration: none;
}

dialog {
	background-color: rgba(34,175,176,1.0) !important;
	background: -webkit-linear-gradient(top, rgba(104,144,173,1) 0%,rgba(102,126,153,1) 100%) no-repeat center center fixed !important;
	background: -moz-linear-gradient(top, rgba(104,144,173,1) 0%,rgba(102,126,153,1) 100%) no-repeat center center fixed !important;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border: 1px solid #1587d4 !important;
	color: white !important;
}

dialog > form {
	max-width: 480px;
}

dialog > form > p {
    color: white;
    font-family: inherit;
    font-weight: 500;
	margin: 0 0 1em 0;
}

.hboxrow {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	border: none;
	margin: 0;
	padding: 0;
}

.hboxrow > div + div {
	margin-left: 10px;
}

dialog .hboxrow > input {
	flex-grow: 1;
}

dialog::backdrop { /* native */
  background-color: rgba(0,0,0,0.6) !important;
}
dialog + .backdrop { /* polyfill */
  background-color: rgba(0,0,0,0.6) !important;
}

input[type=text],
input[type=password] {
	border: none;
	border-bottom: 2px solid #666;
	background: none;
	padding-bottom: 2px;
	min-height: 32px;
	font-size: 0.9rem;
	color: #fce94f;
	width: 10em;
}

input[type=radio] {
	vertical-align: 2px;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-right: 8px;
}

.radio-group input[type="radio"]:checked + span { 
	color:#fce94f;
	font-weight: bold;
}

input:focus {
	border-bottom: 4px solid #fce94f;
	padding-bottom: 0px;
}

input[type=text]:focus,
input[type=password]:focus {
	outline: none;
}

input + input,
input + button,
button + button {
	margin-left: 2px;
	margin-right: 2px;
}

button {
	background-color: #fce94f;
	border: none;
	min-width: 4em;
	min-height: 40px;
}

button:disabled {
	background-color: #666;
	opacity: 0.5;
}

button.destructive {
	background-color: #c00;
	color: #fff;
}

button.secondary {
	background-color: #fbfce4;
	color: #333;
}

.status {
	color: #fce94f;
}