* {
    font-family: verdana, arial, sans-serif;
	font-size: 12px;
	cursor: default;
}
html, body {
	margin: 0;
	background-color: #f1f1f1;
}
.flexContainer {
    display: flex;
	flex-flow: column;
}

/* TOP AREA */

.headerDiv {
	height:35px;
	display: flex;
	flex-flow: row;
	background-color: #633463;
	align-items: center;
}
#cp {
	font-size: 16px;
	background-color:#6497b1;
	background-color:#83ae9b;
	display: flex;
	height: 70%;
	align-items: center;
	justify-content: center;
	padding: 0 15px 0 15px;
}
.menuBar {
	height: 70%;
	background-color:#a1b8c9;
	display: flex;
	flex-flow: row;
	align-items: center;
	flex: 1;
	justify-content: space-between;
	padding-left: 15px;
}

/* MID SECTION */

.midSection{
	display: flex;
	/*flex-flow: row;	
	height: 91vh;*/
	overflow-x: hidden;
	justify-content:center;
	align-items:center;
	background-color: #f1f1f1;
	position: fixed;
	top: 35px;
	bottom: 15px;
	width: 100%;
}
.loginFrame{
	display: flex;
	flex-flow: column;
	height: 220px;
	width: 310px;
	justify-content: center;
	align-items: center;
	background-color: #f1f1f1;
	border-radius: 0px;
	border: none;
	border-top: 7px solid green;
	border-bottom: 7px solid green;
	border-top: 7px solid #633463;
	border-bottom: 7px solid #633463;
	box-shadow: none;
	margin: 0;
	position: fixed;
	top: calc(42% - 105px);
	left: calc(50% - 155px);
}
.userEmailDiv, .passwordDiv, .registerCodeDiv{
	margin: 0 0 10px 0;
	justify-content: center;
}
#ipUserEmail, #ipPassword, #ipRegisterCode{
	width: 290px;
	padding-left: 5px;
	border-radius: 4px;
}
.inputContainer{
	display: flex;
	flex-flow: column;
}
#pswd{
	display: none;
}
.submitContainer{
	margin: 5px 0 0 0;
	display: flex;
	justify-content: center;
}
#loginButton, #registerButton, #registerCodeButton{
	width: 298px;
	height: 30px;
	margin-top: 2px;
	font-size: 14px;
}
.registerForgotDiv{
	margin: 15px 0 0 0;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
}
.registerDiv{
	margin: 0 7px 0 17px;
	display: flex;
	flex-flow: row;
	align-items: center;
	padding: 0;
}
.forgotDiv{
	margin: 0 0 0 15px;
}

/* BOTTOM FOOTER */

footer {
	background-color: #d2c5a6;
	height: 10px;
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	bottom: 0;
}
.copyright{
	font-size: 6px;
	padding: 5px;
}


