@import url(fonts_google.css?family=Open+Sans+Condensed:300);
* {
  box-sizing: border-box;
}
/* OPTUS COLOURS */
/* Yellow: #fdcc08 */
/* Light Blue: #00a3ad */

.container {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  min-width: 320px;
  height: 100vh;
  min-height: 500px;
  overflow-y: hidden;
  background-color: #157fcc;
}
.container[data-carrier-name="OPTUS"] {
  background-color: #fdcc08;
}

.container .bg-img {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}
.container[data-carrier-name="OPTUS"] .bg-img {
  background-color: #fdcc08;
}
.container .bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

.main {
  position: relative;
  flex: 1;
  padding: 50px;
}
.main .error {
  display: block;
  margin: auto;
  max-width: 1000px;
  color: #ffffff;
}
.main .error--title {
  font-size: 48px;
  font-weight: bold;
  margin: 0.5em 0;
}
.main .error--description {
  font-size: 36px;
  font-weight: bold;
  margin: 0.5em 0;
}
.main .error--description a {
  color: inherit;
}
.main .error--table {
  font-weight: bold;
  max-width: 100%;
}
.main .error--table td {
  padding: 5px;
  vertical-align: top;
}

.main .error--table td pre {
  max-width: 900px;
  max-height: 180px;
  overflow: auto;
}

.footer {
  flex: 0 1 auto;
  z-index: 1;
  background-color: #e2e8e7;
}
.container[data-carrier-name="OPTUS"] .footer {
  background-color: transparent;
}
.footer .footer--inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  width: 100%;
  padding: 50px 25px 25px 25px;
}
.footer .footer--link-to-login {
  flex: 1;
  text-align: center;
  padding: 50px 0px;
  font-size: 24px;
  font-weight: bold;
  color: #464646;
}
.container[data-carrier-name="OPTUS"] .footer .footer--link-to-login {
  color: #ffffff;
}
.footer .footer--link-to-login a {
  color: inherit;
}
.footer .footer--genasys-logo-wrapper {
  flex: 0 1 auto;
}
.footer .footer--optus-logo {
  display: block;
  width: 100px;
}
.footer .footer--genasys-logo {
  display: block;
  width: 100px;
  padding-top: 10px;
  padding-bottom: 7px;
}
.footer .footer--optus-logo-wrapper {
  flex: 0 1 auto;
}
.footer .footer--optus-logo {
  width: 100px;
}
