.loginForm {
  font-family: "Open Sans", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #000;
}

.loginNorth {
  width: 100%;
  min-height: 50vh;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* required so the footer gets invisible when moved over this element! */
  position: relative; /* a z-index only works on positioned elements */
  z-index: 1; /* required to make footer invisible when moved over this element! */
}

.loginWrap {
  width: 100%;
  max-width: 1450px;
  padding: 0 50px;
  display: flex; /* to center the label vertically */
}

.loginNorthLeft {
  margin: auto;
  margin-left: 0px;
}

.loginNorthRight {
  text-align: right;
  float: right;
  margin-top: 15px;
}
.loginNorthRight a:focus,
.loginNorthRight a:hover {
    text-decoration: underline;
}

.loginNorthRight a {
  color: #000;
  font-size: 12px;
}

.loginFooter {
  color: #000;
  
  /* stick the footer to the bottom of the page: */
  position: absolute; /* z-index only works on positioned elements */
  bottom: 0;
  left: 0;
  
  min-height: 50vh;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end; /* footer content at the bottom */
  align-content: space-around;
  padding: 20px 50px 20px 20px;
  
  /* ATTENTION: Don't use a negative z-index as it will prevent any input e.g. click on links! */
  z-index: 0; /* required to make footer invisible when moved over the top element! */
}
.loginFooter a {
  text-decoration: none;
}

.loginGlobalRoamer {
  /* use orange color: */ 
  background-color: #e4c200;
}

.loginSite {
  /* use green color: */ 
  background-color: #89b916;
}

.systemNameLabel {
  font-size: 16px;
  display: block;
  margin-left: 5px;
}

.loginForm .logo {
  /* scaling down the logo keeping the text readable: */ 
  width: 130px;
  height: 44px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.loginForm input {
  width: 290px;
  margin: 3px 0;
  height: 35px;
  padding: 0 10px;
}
.loginForm button {
  text-transform: uppercase;
  outline: 1px solid transparent;
  box-shadow: none;
  outline: none;
  margin: 3px 0;
  height: 35px;
  font-size: 14px;
  padding: 0 20px;
  width: 290px;
  font-weight: bold;
}

.ssoLoginButton {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.ssoLoginButton:active,
.ssoLoginButton:focus,
.ssoLoginButton:hover {
  background: #efefef;
  color: #000;
}

.loginButton {
  background: #0000ff;
  color: #fff;
  border: 1px solid #000;
}
.loginButton:active,
.loginButton:focus,
.loginButton:hover {
  background: #54c0f8;
  color: #000;
}

input {
  border: 1px solid #000;
}
input:focus {
  border: 2px solid #000;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.homeModeLabel {
  font-size: 110px;
  line-height: 130px;
}

.loginMsgPanel {
  float: left;
  font-size: 12px;
  height: 48px;
  width: 295px;
}

.loginMsg div[class^="ui-messages"] {
  background: none;
  border: none;
  color: #000;
  padding: 0;
}
.loginMsg span[class$="-icon"] {
  background: none;
  line-height: 25px;
}
.loginMsg span[class$="-icon"]:before {
  font-family: 'Icons';
  content: "\e614";
  font-size: 16px;
}
.loginMsg span[class$="-summary"] {
  display: block;
}
.loginMsg li {
  float: left;
  text-align: left;
  width: 270px;
}

.capsLockMsg {
  color: #000;
  display: none;
  margin-right: 5px;
}

.loginBox {
  border-radius: 5px; 
  border: 1px solid #757575; 
  padding: 1em;
}

.loginLogo {
  /* some positioning correction for the logo to align it with the text: */
  margin-bottom: -12px;
 
  padding-left:  10px;
  padding-right: 10px;
}

.copyright {
  margin-right: 15px;
 
  font-size: 14px;
}
.copyright .hidden {
  display: none;
}
.copyright a {
  color: #000;
}
.copyright a.imprint {
  font-weight: bold;
}
.copyright a.imprint:hover,
.copyright a.imprint:focus {
  text-decoration: underline;
}

button.ui-button.ui-widget.j-busy {
  background: #000 url("/webui/faces/javax.faces.resource/ajaxStatus.gif?ln=images") no-repeat right center;
  background-size: 32px;
}