/* This is the CSS for the login page */

/* Import for the Google font */
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

body{
	background-color: #fff;
	font-size: 12px;
	font-family: "Open Sans"; 
	color:#fff;
}
h1{
	color:#58585b !important;
}
a{
	color:#58585b !important;
	font-size: 12px;
	font-family: "Open Sans"; 
}
label{
	font-size:14px;
	color: #58585b;
}
input{
	-webkit-appearance: none;
    -webkit-border-radius: 0;
}
p{
	color:#58585b !important;
}


.loginFormTable{
	width:100%;
}
.helpLinkTable{
	width:100%;
	text-align:center;
}


.logincontentdiv{
	height:475px;
	position:absolute;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	background-color: #fff;
}
.resetcontentdiv
{
	height: 468px;
	position:absolute;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	background-color:#fff;
}
.contentTable{
	margin-left:auto;
	margin-right:auto;
	border-collapse:collapse;
}


.staffready-logo {
	height: 90px;
	background:url('res/StaffReady-logo-trans-greytext-h90.png') no-repeat;
	width: 440px;
}

/* Wicket FeedbackPanel classes */
.feedbackPanel {
	padding-top:0px;
	padding-bottom:0px;
	margin:0px;
	width: 280px;
}
.feedbackPanelERROR {
  color: #ff0000;
  font-size: 12px;
  font-family: "Open Sans"; 
  font-weight: bold;
}
.feedbackPanelWARNING {
	color: #f4a460;
	font-size: 12px;
	font-family: "Open Sans"; 
	font-weight: bold;
}
.feedbackPanelINFO {
	color: green;
	font-size: 12px;
	font-family: "Open Sans"; 
	font-weight: bold;
}
/* This is a general use class for making things red and bold */
.error {
	color: #ff0000;
	font-family: "Open Sans"; 
	font-weight: bold;
}

input.login{
    color: #fff;
    background:#333;
	border: 0;
	border-radius: 3px;
/*     height: 30px; insert appropriate height */
    margin: 10px 0px 10px 0px; /* insert appropriate margin, if needed, to adjust position */
    padding: 10px 20px;
    font-size: 24px;
    width: 315px;
}
input.login:focus {
	outline:none;
}
input[type="text"]:disabled {
	color: #939597;
}
.loginbutton {
	display: block;
	margin:20px auto 20px auto;
	font-weight:bold;
    font-size: 24px; 
    line-height: 28px;
    color: #fff;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-radius: 3px;
    height:40px;
    overflow:visible;
    cursor: pointer;
    width:100%;
    min-width:auto;
    max-width:auto;
	background-color: #2baae1;
}
.resetbutton {
	display: block;
	margin:20px auto 20px auto;
	font-weight:bold;
    font-size: 24px; 
    line-height: 28px;
    color: #fff;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-radius: 3px;
    height:40px;
    overflow:visible;
    cursor: pointer;
    width:100%;
    min-width:auto;
    max-width:auto;
	background-color: #2baae1;
}

/* Hack for safari 9.0+, without this the button doesn't line up with the input fields */
@supports (overflow:-webkit-marquee) and (justify-content:inherit) 
{
 .loginbutton {
	display: block;
	margin:20px auto 20px 0px;
	font-weight:bold;
    font-size: 24px; 
    line-height: 28px;
    color: #fff;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-radius: 3px;
    height:40px;
    overflow:visible;
    cursor: pointer;
    width:96%;
    min-width:50%;
    max-width:96%;
	background-color: #2baae1;
	}
	.resetbutton {
	display: block;
	margin:20px auto 20px 0px;
	font-weight:bold;
    font-size: 24px; 
    line-height: 28px;
    color: #fff;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-radius: 3px;
    height:40px;
    overflow:visible;
    cursor: pointer;
    width:100%;
    min-width:50%;
    max-width:100%;
	background-color: #2baae1;
	}
}

/* This is the CSS to control the shield/check icon */
.cacheLoaded {
color:green;
font-size:12px;
}
.cacheNotLoaded {
color:red;
font-size:12px;
}

/* ======================= CONTAINERS ============================== */
.box {
	width: 100%;
	display: inline-block;
}

.btn-box {
	width: 100%;
	display: inline-block;
}

.spacer {
	padding-bottom: 15px;
}

.form-row {
	width: 100%;
}

.box .form-row:not (:last-child ) {
	padding-bottom: 5px;
}

.split-container {
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
}

.split-left {
	display: inline-block;
}

.split-right {
	float: right;
}
/* ======================= END CONTAINERS ========================== */

/* ======================= COLUMNS ================================= */
/* Flexible div grid table standard elements */
.tbl {
	padding: 0;
	margin: 0;
	width: 100%;
	display: table;
}

.tbl-row {
	display: table-row;
	vertical-align: top;
}
/* Tables and Table Cells can have margins/padding, but rows cannot.
This applies a constant margin to cells within a row, as long as their class name starts with the column pattern "tbl-col-" 
excluding the last row, where padding is not desired */
.tbl .tbl-row:not (:last-child ) >div[class^="tbl-col"] {
	padding-bottom: 5px;
}

/* Five column flexible grid */
.tbl-col-5-1 {
	display: table-cell;
}

.tbl-col-5-2 {
	display: table-cell;
}

.tbl-col-5-3 {
	display: table-cell;
}

.tbl-col-5-4 {
	display: table-cell;
}

.tbl-5-5 {
	display: table-cell;
}
/* ======================= END COLUMNS ================================= */
