#container {
  align: center;
  valign: center;
  padding: 30px;
}

body {
	align-items: center;
	background-color: #EEE;
	display: flex;
	font-family: 'Arial', serif;
	font-size: 12px;
	justify-content: center;
	text-align: center;
}

h1 {
	font-size: 1.5em;
}

#loginForm {
	background-color: white;
	box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -7px rgba(0,0,0,0.2);
	border-radius: 5px;
	padding: 30px 0;
	position: relative;
	overflow: hidden;
	width: 300px;
}

#loginLogosBar {
	align-items: flex-end;
	box-sizing: border-box;
	display: flex;
	height: 75px;
	justify-content: space-between;
	margin: 0 auto 40px;
	width: calc(100% - 80px);
}

img.loginLogo {
	width: 100%;
}

img.countryFlag {
	height: 48px;
	width: 48px;
}

form{
	height:190px;
	padding: 0 40px;
}
form .input-container {
	height: 38px;
	margin-bottom: 18px;
	position: relative;
	width: 100%;
}
input[type="text"] {
	font-size: 15px;
	padding: 8px;
	border: 2px solid lightgrey;
	width: 100%;
	border-radius: 3px;
}

input[type="password"] {
	font-size: 15px;
	padding: 8px;
	border: 2px solid lightgrey;
	width: 100%;
	border-radius: 3px;
}

input[type="submit"] {
	background-color: #FF8A40;
	border-style: none;
	color: white;
	font-size: 16px;
	font-weight: 300;
	height: 38px;
	padding: 8px;
	width: 130px;
	border-radius: 3px;
}
input[type="submit"]:hover {
	background-color: #FF8A40;
	border-radius: 3px;
	border-style: none;
	color: white;
	cursor: pointer;
	font-size: 16px;
	font-weight: 300;
	height: 38px;
	padding: 8px;
	width: 130px;
}

input[type="submit"]:focus {
	outline: none;
}

input:-webkit-autofill {
	box-shadow: 0 0 0 30px white inset;
}

label {
	background-color: white;
	color: lightgrey;
	left: 15px;
	padding: 0 3px;
	position: absolute;
	top: -7px;
}

.footer{
	align-items: center;
	bottom: 0;
	border-top: 1px solid lightgrey;
	box-sizing: border-box;
	color: #757575;
	display: flex;
	font-size: 12px;
	height: 50px;
	justify-content: center;
	padding: 0 15px;
	position: absolute;
	width: 100%;
}

.footer .link{
	color: inherit;
	cursor: pointer;
	text-decoration: underline;
}

.footer strong{
	color: #FF8A40;
}

.error {
  color: red;
}

.message {
	color: gray;
	font-size: 0.9em;  
}