/**
 *	login.css
 *
 *	All styles which belong to the login template are
 *	defined in this document.
 */

/**
 *	General document
 */
body {
	text-align: center;
}

/**
 *	Login Wrapper Container
 */
main {
	width: 35%;
	margin: 5% auto 0;
}

/**
 *	Login Header
 */
header {
	background-color: #204e9b;
    border-radius: 10px 10px 0 0;
    color: #ffffff;
    font-size: 32px;
    padding: 5px;
}

/**
 *	Login Content
 */
article {
	background-color: #dedede;
	padding: 30px 20px 20px 20px;
	border: 1px solid #204e9b; 
	border-radius: 0 0 10px 10px;
	text-align: center;
}
#errorText {
	color: #ff0000;
    font-size: 17px;
    font-weight: bold;
}

/**
 *	Login Form
 */
article section {
	margin: 0 0 20px 0;
} 
#inputUser, #inputPass {
	width: 98%;
	height: 30px;
	text-align: center;
	font-size: 18px;
}
#inputSubmit {
	width: 100px;
	margin: auto;
}
.submitWrapper {
	margin: 80px 0 0 0;
}
.submitLoading {
	font-size: 19px;
}