/* Login */

.passwordstuff.resetthepass {
	top: -25px;
}

#passwinfodiv {
	position: absolute;
	background-color: #9999ff;
	border-radius: 8px;
	border: 1px solid #449;
	width: 350px;
	top: 250px;
	left: 50px;
}
.passwinfo {
	position: relative;
	display: block;
}

.passinfo {
	width: 20px;
	cursor: pointer;
	position: relative;
	z-index: 100;
	top: 6px;
}

.passvalidatediv {
	position: relative;
	display: inline;
	top: 0px;
	left: 0px;
}

.passwordstuff {
	position: relative;
	top: -45px;
}

.passfeedback {
	position: relative;
	top: -1px;
	left: 60px;
	color: red;
	font-size: 14px;
	display: inline-block;
	width: calc(100% - 100px);
}

.passfeedback.passvalid{
	color: blue;
}

.logininput.emailinput {
	width: 343px;
}

.validatediv {
	position: relative;
	background-color: white;
	width: 32px;
	height: 46px;
	top: -68px;
	left: 410px;
	border-right: 1px solid #777;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
}

.emailerror {
	position: relative;
	color: green;
	font-size: 14px;
	left: calc(100% - 215px);
	top: -65px;
}

.emailerror.iserror {
	color: red;
}

.validuser {
	position: relative;
	left: 4px;
	top: 15px;
}

.invaliduser {
	position: relative;
	left: 4px;
	top: 15px;
}

.loadinggif {
	width: 24px;
	position: relative;
	left: 2px;
	top: 10px;
}

#imgloginlogo{
	width: 300px;
	margin: 20px;
}

#divloginview {
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-align: center;
}

#divloginpane {
	margin: auto;
	width: 500px;
	padding-bottom: 60px;
	box-shadow: 16px 16px 4px 0px rgba(0,0,0,0.65);
	margin-top: calc(50vh - 273px);
	background-color: rgba(190,190,190,0.9);
	border-radius: 25px;
}

#loginformdiv {
	text-align: left;
	position: relative;
}


.logincenter {
	margin-left: 25px;
	margin-right: 25px;
}


.loginlabeltext {
	font-size: 20px;
	font-weight: bold;
	margin-left: 40px;
	margin-bottom: 5px;
	display: inline-block;
}

.logininput {
	margin-left: 60px;
	margin-bottom: 20px;
	font-size: 22px;
	width: 375px;
	height: 42px;
}

.passwordstuff .logininput {
	margin-bottom: 0px;
}

.loginsubmit {
	font-size: 24px;
	font-weight: bold;
	width: 280px;
	height: 50px;
	margin-top: 30px;
	margin-left: 100px;
	margin-bottom: 20px;
	border-radius: 15px;
	background-color: #5980ce;
	color: white;
}

.logincancel {
	text-align: left;
	color: #c00;
	font-size: 20px;
	font-weight: bold;
	margin-top: 30px;
}

.newusersubmit {
	font-size: 24px;
	font-weight: bold;
	width: 280px;
	height: 50px;
	margin-left: 100px;
	border-radius: 15px;
	background-color: #5980ce;
	color: white;
	position: relative;
	top: -10px;
}

.newusercancel {
	text-align: left;
	color: #c00;
	font-size: 20px;
	font-weight: bold;
	margin-top: 15px;
}

.loginsmalllink {
	margin-left: 60px;
	font-size: 12px;
	margin-bottom: 60px;
}

.loginsmalllink:hover {
	color: #2c5fc5;
}

.loginmediumlink {
	margin-left: 60px;
	font-size: 14px;
	margin-bottom: 60px;
}

.loginmediumlink:hover {
	color: #2c5fc5;
}

.loginerror {
	color: red;
	margin-left: 20px;
}

/* End Login */



@media screen and (max-width: 800px) {
	#divloginpane {
		width: calc(min(100% - 20px, 400px));
		box-shadow: unset;
		margin-top: 3vh;
	}
	#imgloginlogo {
		width: calc(min(100% - 40px, 300px));
	}
	.logininput {
		font-size: 20px;
		width: calc(100% - 100px);
		height: 32px;
	}
	.logininput.emailinput {
		width: calc(100% - 132px);
	}
	.validatediv {
		left: calc(100% - 65px);
		height: 36px;
		top: -58px;
	}
	.loadinggif {
		top: 6px;
	}
	.validuser {
		top: 10px;
	}
	.invaliduser {
		top: 10px;
	}
	.emailerror {
		top: -60px;
	}
	.loginsubmit {
		width: calc(max(30%, 150px));
		margin-left: calc(50% - max(15%, 75px));
	}
	.newusersubmit {
		width: calc(max(30%, 150px));
		margin-left: calc(50% - max(15%, 75px));
	}
	#newloginform .loginlabeltext {
		font-size: 16px;
	}
	#newloginform .loginsubmit {
		margin-top: 5px;
		margin-bottom: 2px;
	}
	#newloginform .logincancel {
		margin-top: 10px;
	}
	
}

