@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

html, body, .outer {
    height: 100%;
    margin: 0px;
    width: 100%;
}

* {
    margin: 0px auto;
    padding: 0px;
}

body {
	/*teal to turquoise tested in FF50, IE11, Chome56*/
	background: #EBEBEB;
	/*background: -moz-linear-gradient(-45deg, #369bb3 0%, #53b3ba 100%); 
	background: -webkit-linear-gradient(-45deg, #369bb3 0%,#53b3ba 100%);
	background: linear-gradient(135deg, #369bb3 0%,#53b3ba 100%);*/
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='black', endColorstr='white',GradientType=1 );
    color: #747980;
	font-size: 0.8125rem;
	font-weight: normal;
	font-family: Montserrat, Arial, Helvetica, Sans Serif;
}

select {
    width: 50px;
    vertical-align: middle;
}

a {
    color: #343434;
    text-decoration: underline;
}

input {
    display: block;
    padding: 1%;
    background-color: #fff;
    border: 1px #DBDBDB solid;
    border-radius: 20px;
    width: 98%;
    height: 30px;
    margin-bottom: 15px;
    font-size: 0.81rem;
    text-align: left;
}

a:hover {
	text-decoration: underline;
}

.hand {
    cursor: pointer;
}

.logoutText {/*not sure why this is here??*/
    padding: 30px 0 0 0;
    text-align: center;
}

.logo {
    display: inline-block;
    width: 20%;
    max-width: 225px;
    height: auto;
    vertical-align: bottom;
	padding-bottom: 40px;
	padding-top: 30px;
	padding-right: 20px;
}

.fieldContainer {
	display: inline-block;
	width: 75%;
	min-height: 135px;

}

/* layout CSS */
.outer {/*force to take full screen*/
    display: table;
    position: absolute;
}

.middle {/*act a cell in the outer div as a table*/
    display: table-cell;
    vertical-align: middle;
}

.container {/*set login form including controls width*/
    width: 60%;
	padding: 20px;/*the whitespace around all controls*/
	background-color: White;
	border-radius:0px;
    max-width:575px;
    box-shadow: none;
}

.arrown_down {/*will leave this in for now*/
    display: none;
    height: 4px;
    padding-left: 40px;
}

.thisForm, .3tier_div {/*the core form areas*/
    height: auto;
}

/*-- spacer styles */
/*hide these two spacers*/
.top_space, .u_p_space {
    display: block;
    height: 0px;
}

.bottom_space {
    display: block;
    height: 16px;
}

.spacer {
    display: block;
    height: 10px;
    width: 100%;
}
/* end of spacer styles */

/* setups style for all labels*/
div[class*="Lbl"] {
    display: none;
    text-align: left;
    vertical-align: middle;
    padding-top: 3px;
}

div.loginLbl {
	display: block;
	text-align: left;
	padding-bottom: 20px;
	color: #343434;
}

.username_div, .password_div, .email_div {
    display: block;
    /*padding-top: 30px;*/
}

/* button container styles */
div[class*="btn"] {
    display: block;
    padding-top: 10px;
    height: 40px;
	text-align: right;
}
/* button link styles*/
div[class*="btn"] a {
    background-color: #C90C0F;
    color: #FFF;
    padding: 7px 20px;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
    margin-right: -2px;
}

/*for link container for switch between forgotten password and login*/
.forgotten, .lostPword {
    float: left;
    padding-top: 10px;
    width: 75%;
    display: block;
    text-align: right;
}
/*for link switch between forgotten password and login*/
.forgotten > a, .lostPword > a {
	display: inline-block;
	padding: 5px 0px 5px 0px;
}

/* tier 3 login stylings */
.char {
    font-weight: bold;
}

.char_txt {
	display: block;
	padding-left: 30px;
	padding: 5px;
	vertical-align: middle;
	line-height: 20px;
	text-align: center;
}
/* end of tier 3 login stylings */
/* media queries */
@media only screen and (min-width: 700px) and (max-width: 1200px) {
    .container { /*set width for entire form area*/
        width: 50%;
    }
}

@media only screen and (max-width: 700px) {
    .container { /*set width for entire form area*/
        width: 50%;
        padding: 5% 10%;
    }
	
	.forgotten, .lostPword { /*keep the buttons correctly inline*/
		width: 60%;
	}
}

@media only screen and (max-width: 550px) {
	.logo { /*since we remove the padding on the container to prevent overflow we now need padding to prevent the logo being flush*/
		padding-top:25px;
	}
	
	input {/*prevent overlap*/
		width:85%;
	}
	
    .container { /*set width for entire form area*/
        width: 94%;
		padding: 0px;
		margin: 0px auto;
        max-width: none;
    }
	
	.forgotten, .lostPword { /*keep the links correctly inline*/
		padding-left: 20px;
	}
	
	div[class*="btn"] a {
		margin-right: 20px;
	}
}