.html,
.body {
  height: 100%;
  margin: 0;
  padding: 0;
}

input:focus,
select:focus,
button:focus {
  outline: none;
  border-color: #07a6c1;
}

.login-container {
  display: flex;
  min-height: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.right-col {
  background: url(/images/XMC-BG-Image-1920x1080.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  flex: 65;
  display: flex;
  flex-direction: column-reverse;
}

.corp-logo {
  flex-shrink: 0;
  height: 45px;
  margin-bottom: 10px;
}

.left-col {
  background-color: white;
  display: flex;
  flex-direction: column;
  flex: 35;
}

.logo-image {
  height: 60px;
  margin: 83px auto 157px;
  width: 80%;
  display: flex;
  justify-content: center;
}

.login-form {
  flex: 1;
}

.errorString {
  font-size: 14px;
  color: #c50a64;
  flex-shrink: 0;
}

.form-control {
  display: block;
  width: 250px;
  height: 35px;
  padding: 6px 12px;
  font-size: 14px;
  color: #24202b;
  background-image: none;
  border: solid #e3e3e7;
  border-width: 0px 0px 2px 0px;
  border-radius: 0px;
  margin: 0 auto 35px;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 250px;
  margin: 0 auto;
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: Bold;
  height: 35px;
  background: #00a5bf 0 0 no-repeat padding-box;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards;
}

::-webkit-input-placeholder {
  color: #404040;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #404040;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #404040;
}

:-ms-input-placeholder {
  color: #404040;
}

.footer {
  color: #818083;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  padding: 0 0 5px 7px;
}

.footer-item {
  flex: 1;
}

ul#loginLinks {
  text-align: right;
}

ul#loginLinks li {
  display: inline;
}

ul#loginLinks li a {
  text-decoration: none;
  padding: 0 11px 0 7px;
  color: #00a5bf;
  font-weight: 400;
  font-size: 12px;
}

.white-space-no-wrap{
  white-space: nowrap;
}

input::-ms-clear, input::-ms-reveal {
  display: none;
}