@charset "utf-8";
/* CSS Document */
html {
	position: relative;
	background: #00B3D2;
	background-size: cover;
	height: 100%;
}
body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	color: #483D3F;
	height: 100%;
	margin:0;
}

p {
	margin:20px 0;
}

hr {
	border: 0;
    border-top: 1px solid #e8e8e8;
	margin: 20px 0;
}

a,
a:visited {
	color: #999;
	text-decoration:none;
}
a:hover,
a:active,
a:focus {
	color: #00B3D2;
	text-decoration:underline;
}
.footer-links a,
.footer-links a:visited {
	padding:0 10px;
}
.footer-links a:first-child {
	border-right: 1px solid #ccc;
	padding-left:0;
}
a.lostpw {
	float:right;
}

*, *::before, *::after {
	box-sizing: border-box;
}

#container {
	height:100%;
	padding:10px;
}

.logo {
	padding:30px;
	background:#fff;
	border-radius: 3px 3px 0 0;
}

.login-wrapper {
	position:relative;
	top: 50%;
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
	width:400px;
	max-width: 100%;
	margin: 0 auto;
	vertical-align:middle;
	background: #f5f5f5;
	border-radius: 3px;
	box-shadow: 0 0 20px 0 rgba(13, 98, 119, 0.2), 0 5px 5px 0 rgba(13, 98, 119, 0.24);
}
form,
.login-wrapper-inner {
	padding:0 30px 30px;
}
h1 {
	font-weight: normal;
	color: #483D3F;
	font-size: 20px;
	margin: 20px 30px;
	line-height:1em;
}
label {
	display: block;
	margin-bottom: 5px;
}
.frm-row {
	margin-bottom: 15px;
}
#uname,
#upass,
#capcode,
#gcode {
	display: block;
	max-width: 100%;
	width: 100%;
}
#passwordReminder {
	float: right;
	text-align: right;
}
.uk-clearfix:before {
	content: "";
	display: table-cell;
}
.uk-clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.error {
	color: #cc0000;
	font-size: 16px;
}
.success {
	color: green;
	font-size: 16px;
}

input:not([type]),
input[type="text"],
input[type="email"],
input[type="password"] {
	padding: 8px 6px;
	border: 1px solid #C7C3C4;
	background: #ffffff;
	color: #483D3F;
	font-size:16px;
	-webkit-transition: all linear 0.2s;
	transition: all linear 0.2s;
	border-radius: 0;
	-webkit-appearance: none;
}
input:not([type]):focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
	border-color: #483D3F;
	outline: 0;
	color: #483D3F;
}
input:not([type]):disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled {
	border-color: #dddddd;
	background-color: #fafafa;
	color: #999999;
}


input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
.buttonlink::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type=submit],
input[type=button],
input[type=reset],
.buttonlink {
	margin: 0;
    border: none;
    overflow: visible;
    font: inherit;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    box-sizing: border-box;
    padding: 6px 30px;
    background: #5F585A;
    vertical-align: middle;
    line-height: 30px;
    min-height: 30px;
    font-size: 16px !important;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    width: 100%;
    letter-spacing: 1px;
    transition: all 0.2s;
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
	
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
.buttonlink:hover,
input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus,
.buttonlink:focus {
	background-color: #483D3F;
	color: #ffffff;
	outline: none;
	text-decoration: none;
	background-image: none;
}
input[type=submit]:active,
input[type=button]:active,
input[type=reset]:active,
.buttonlink:active {
	background-color: #483D3F;
	color: #ffffff;
	background-image: none;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.4);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
input[type=submit]:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
.buttonlink:disabled,
input[type=submit].disabled,
input[type=button].disabled,
input[type=reset].disabled,
.buttonlink.disabled,
.disabled input,
.disabled select {
	background-color: #fafafa;
	color: #999999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background-image: none;
	box-shadow: none;
	text-shadow: 0 1px 0 #ffffff;
}



