html {
	scroll-beheaviour: smooth;
}

body {
	background-image: url("/img/login-bg.jpg");
	background-color: #044a7e;
	color: #eaeaea;
	font-family: "Calibri", Arial, Helvetica, "Sans Serif";
	text-align: center;
}

a {
    color: #044a7e;
    text-decoration: underline;
}

#login {
	height: 95vh;
}

.view {
	position: relative;
	width: 20em;
	top: 45%;
	/*left: 50%;*/
	margin: auto;
	transform: translateY(-50%);
}

.loginarea {
	padding: 2.5em 1.5em;
	width: 100%;
	display: block;
	/*left: 50%;*/
	margin: auto;
	/*transform: translateY(-50%);*/
	border-radius: 0.5em;
	transform: translateX(-1.5em);
	/*background-color: rgba(255,255,255,0.3);*/
	background-color: rgba(255, 255, 255, 0.6);;
	color: 999999;
	-webkit-box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.3);
}

.icon {
	font-size: 3em;
	color: #044a7e;
}

img {
	width: 100%;
	display: inline;
	text-align: center;
	margin: auto;
	margin-bottom: 1.5em;
}

@media only screen and (min-width: 360px) and (orientation: portrait) {
	.loginarea {
		top: 2%;
		left: 0%;
		transform: translateY(0%);
		margin: auto;
		transform: translateX(-1.5em);
	}
	
	.view {
		position: relative;
		margin: auto;
		top: 2%;
		width: 18em;
		margin-bottom: 1em;
		text-align: center;
		left: 0%;
		transform: translateX(0%);
		transform: translateY(0%);
	}
	
	#login {
	height: 100%;
	width: 100%;
	}
	
}

h1 {
	color: white;
	font-size: 2em;
	margin-top: 0.5em;
}

input[type=text], input[type=password] {
	color: #666666;
	border: 0;
	font-size: 1.2em;
	width: 95%;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background-color: rgba(230,230,230,0.2);
	border-radius: 0.2em;
	border: 1.8px solid #aaa;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}

input[type=text]:hover, input[type=password]:hover, input[type=text]:focus, input[type=password]:focus {
	background-color: rgba(250,250,250,0.5);
	border-bottom: 1px solid #044a7e;
	color: #333;
}

/* .logininfo {
	background: #fff;
	margin: auto;
	border-radius: 5px;
	display: inline-block;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
} */

button {
	font-size: 1em;
	font-family: Calibri, Arial;
	color: #fff;
	background-color: rgba(0, 0, 0, 0);
	color: #044a7e;
	border: 1px solid #044a7e;
	cursor: pointer;
	border-radius: 5px;
	padding: 0.5em 1em 0.5em 1em; 
	margin-top: 0.2em;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}

button:hover, button:focus {
	background-color: #044a7e;
	color: #fff;
}

button:disabled {
	cursor: not-allowed;
	background: rgba(0, 0, 0, 0);
	color: #fff;
}

.credits {
	position: fixed;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
}

#credits {
	text-align: center;
}

.pwreset input[type=text], .pwreset input[type=password] {
	background: #ffffff;
    color: #333;
    text-decoration: none;
    padding: 0.2em 0.5em;
    border: 0;
	border-radius: 5px;
    /*display: block;*/
    margin: .5em 0;
	font-size: 1.2em;
	  -webkit-appearance: none; -moz-appearance: none;
	/*width: 10em; */
	height: 40px; 
	box-sizing: border-box;
	line-height: 40px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.19);
}

#strength {
	position: relative;
	width: 60%;
	background-color: rgba(255,255,255,0.3);
	display: inline-block;
	box-shadow: 0px 0px 23px 0px rgba(120,120,120,0.3);
	border-radius: 0.2em;
	border-bottom: 0.1px solid;
}

#passwordstrength {
  position: relative;
  width: 0%;
  height: 30px;
  background: #b62100;
  border-radius: 0.2em;
  	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}

#passwordstrengthword {
	position: absolute;
	text-align: center;
	top: 20%;
	width: 100%;
	z-index: 10000;
}

#comparepasswords {
	position: relative;
	display: inline;
	margin: 0;
	padding: 0;
	top: -20%;
}