
html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
a, fieldset, form,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	line-height: 1;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}


body {
  background: white;
  color: #606468;
  font: 87.5%/1.5em 'Open Sans', sans-serif;
  margin: 0;
}

a {
  color: #939aa0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input {
  border: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0;
  -webkit-appearance: none;
}


.container {
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */
#login {
  width: 280px;
}

#login form span {
  background-color: #ffffff;
  border-radius: 6px 0px 0px 6px;
  color: black;
  display: block;
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  border: 1px solid #E0E4E8;
}

.inputEmail, .inputPassword{
	height: 50px;
	background-color: #fcfcfc; 
	border-radius: 0px 6px 6px 0px;
	color: #847f7f; 
	margin-bottom: 1em;
	padding: 0 16px;
	width: 230px;
	border: 1px solid #E0E4E8;
}

.chkBoxRow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.inputChkBox{
	-webkit-appearance: auto;
}

.inputSubmit{
	height: 50px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	background-color:#529a9a;
	color: white; 
	font-weight: bold;
	margin-bottom: 2em;
	text-transform: uppercase;
	width: 280px;
}

#login form input[type="submit"]:hover {
  background-color: #4CB6AA;
}

#login > p {
  text-align: center;
}

.inputEmailRetrieve{
	height: 50px;
	background-color: #fcfcfc; 
	border-radius: 6px 6px 6px 6px;
	color: #847f7f; 
	margin-bottom: 1em;
	padding: 0 16px;
	width: 280px;
	border: 1px solid #E0E4E8;
}

.companyBottom
{
	font-size:10px;
	color:Grey;
}

.logoIndexPage_top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logoIndexPage_top img {
  width: 14rem;
  height: 5.88rem;
  display: block;
}

.logonameIndexPage_top {
  color: #203063;
  font-weight: bold;
  font-size: 1.8rem;
}

.logoIndexPage_bottom {
    display: flex;
    align-items: center;
	  justify-content: center;
    gap: 0.4rem;
}

.logoIndexPage_bottom img {
    width: 1.3rem;
    height: 1.3rem;
	  display: block;
}

.logonameIndexPage_bottom {
    color: #203063;
	  font-weight: bold;
	  font-size: 0.8rem;
}

.loginError {
	  display: none;
    color: #db4240;
    font-size: 1rem;
    padding-top: 0.3rem;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#loadingOverlay {
    position: fixed; /* SIT ON TOP OF THE PAGE CONTENT */
    display: none; /* HIDDEN BY DEFAULT */
    width: 100%; /* FULL WIDTH (COVER THE WHOLE PAGE) */
    height: 100%; /* FULL HEIGHT (COVER THE WHOLE PAGE) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* BLACK BACKGROUND WITH OPACITY/TRANPARENCY */
    z-index: 99;
}

#loadingOverlayImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
	  z-index: 100;
}

#rememberMeLabel {
    cursor: pointer;
}

#rememberMe {
    cursor: pointer;
}