
* {
    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%;
}

/* hebrew */
@font-face {
	font-family: 'Heebo';
	font-style: normal;
	font-weight: 400;
	src: local('Heebo'), local('Heebo-Regular'), url(../fonts/Heebo/Heebo-hebrew.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
	font-family: 'Heebo';
	font-style: normal;
	font-weight: 200;
	src: local('Heebo Light'), local('Heebo-Light'), url(../fonts/Heebo/HeeboLight-hebrew.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* latin */
@font-face {
	font-family: 'Heebo';
	font-style: normal;
	font-weight: 400;
	src: local('Heebo'), local('Heebo-Regular'), url(../fonts/Heebo/Heebo-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}

@font-face {
	font-family: 'Heebo';
	font-style: normal;
	font-weight: 200;
	src: local('Heebo Light'), local('Heebo-Light'), url(../fonts/Heebo/HeeboLight-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.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: #F2F2F2;
}

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

.login-panel-with-stage {
	width: 1000px;
	background-color: #F2F2F2;
	margin: auto auto 0 auto;
}

.login-panel-with-stage-and-appstream {
	width: 1200px;
	background-color: #F2F2F2;
	margin: auto auto 0 auto;
}

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

.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 {
	height: 90px;
	padding: 0;
	margin-inline: auto;
  /* Scale the height according to the width, otherwise you get stretching */
	vertical-align: middle;
	border: 0;
	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: #F2F2F2;
	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: normal;
	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: #00001B;
	width: 600px;
	font-weight: 400;
}

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

/* 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;
}

