
* {
    box-sizing: border-box;
}

html {
    height : 100%;
    width : 100%;
    
    min-width: 900px;
    min-height: 600px;

    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.login-page-body {
	height : 100%;
    width : 100%;
    margin: 0;
}

.login-page {
    height : 100%;
    width : 100%;
    margin: 0;
    position : relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #423F3F;
}

.login-panel {
	width: 900px;
	background-color: #fff;
	margin: auto auto 0 auto;
}

.header {
	position: relative;
	width: 100%;
	display: flex;
 	justify-content: space-between;
 	align-items: center;
  	font-size: 26px;
  	width: 100%;
 	margin: 5px 0;
 	padding-right: 1em;
 	background-color: #fff;
}

.separator {
	height: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(270deg, #FF8C0A, #F16E35);
}

.header img.companyLogo {
  float: left;
  width: 160px;
  padding: 0;
  margin: 0 0 0 15px;
  /* Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
   page-break-inside: avoid;
   max-width: 100% !important;
}

.header span {
  font-weight: 400;
  font-size: 22px;
  color: #423F3F;
  text-align: center;
}

hr{
  display: block;
  border-top: 4px solid #ff8c0a;
  margin: 0 0;
  padding: 0;
}

.formCtn {
	width: 100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
		
}

.formCtn form {
	position: relative;
	margin: auto;
	width: 200px;
	padding-top: 50px;
	padding-bottom: 10px;
}

body.login-page div.fieldCtn{
  display: block;
  width: 100%;
  background-color: #fff;
}

.caption {
  position: relative;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 14px;
  color: #423F3F;
}

input {
	width: 100%;
	height: 30px;
	border: 1px solid #73C5FF;
	margin-bottom: 10px;
	font-size: 14px;
	color: #423F3F;
	font-weight: regular;
	padding: 5px 10px;
}

button {
	width: 100%;
	height: 30px;
	border: 1px solid #73C5FF;
	background-color: #fff;
	color: #94918D;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 40px;
	margin-bottom: 10px;
}

button:hover {
	cursor: pointer;
	color: #a5a29e;
}

button:active {
	cursor: pointer;
	color: #b9b6b1;
} 


footer {
	align-self: flex-end;
	margin: auto auto 20px auto;
	color: #FFFFFF;
	width: 600px;
	font-weight: 400;
}

footer > div {
	display : flex;
    justify-content: center;
}

.footerLogo {
	width: 200px;
}

/* LANGUAGES */
.languages {
    margin-bottom: 40px;
}

a.langLink {
	font-size: 16px;
    color : #FCFCF9;
    margin : 0.5em;
    text-decoration: none;
}

a.langLink:hover {
    color: #6ca3e3;
}

a.langLink:active {
    color: #0b74ee;
}

a.langLink.selected {
    text-decoration: underline;
}

.error_message_holder {
	width: 100%;
	height: 30px;
}

.login_error_message {
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size : small;
	font-weight: 600;
	color : red;
}

