:root {
  --warm-grey: #888888;
  --hd-orange: #f08200;
  --hd-dark-orange: #d87600;
  --hd-black: #232323;
}

html,
body {
  height: 100%;
  font-family: Lato;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.1px;
  text-align: left;
  color: #232323;
  color: var(--hd-black);
}

h1 {
  font-size: 33px;
  font-weight: 400;
  margin: 10px 0;
}

h2 {
  font-size: 22px;
  color: #444;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0;
  color: #888888;
  color: var(--warm-grey);
}

a {
  font-family: Lato;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.1px;
  text-align: right;
  color: #f08200;
  color: var(--hd-orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#content-pane > header {
  margin: 0 auto;
  width: 335px;
}

#content-pane > header img {
  float: left;
}

.svg-size-control {
  max-width: 188px;
  text-align: left;
  margin-top: 40px;
}

#bd {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 335px;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #232323;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 39px;
  background-color: #f9f9f9;
  border: solid 1px #d0d0d0;
}

form input[type="text"]:hover,
form input[type="text"]:active,
form input[type="text"]:hover,
form input[type="password"]:hover,
form input[type="password"]:active,
form input[type="password"]:focus {
  border: solid 1px #F08200;
}

::placeholder {
  opacity: 1;
  font-family: Lato;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.1px;
  text-align: left;
  color: #888888;
  color: var(--warm-grey);
}

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

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

form input.user {
  margin-bottom: 1.4285rem;
}

form input[type="submit"] {
  padding: 10px 60px;
  background: #F08200;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: .5s ease;
  width: 100%;
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: center;
  color: #ffffff;
}

form input[type="submit"]:hover,
form input[type="submit"]:active {
  background-color: #d87600;
}

form .submit {
  text-align: center;
  margin: 1.4285rem 0 1.571rem 0;
}

#bd > footer {
  letter-spacing: 0.1px;
  text-align: center;
  color: #888888;
  margin-top: 2.5em;
}

#bd > footer p {
	padding-bottom: 1em;
}

#content-pane > footer {
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-family: Lato;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.1px;
  text-align: center;
  color: #888888;
  color: var(--warm-grey);
}

.show_password,
.hide_password {
  position: absolute;
  right: 15px;
  text-transform: uppercase;
  border: none;
  background: none;
  box-shadow: none;
  color: #888888;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  width: 25px;
  height: 25px;
  margin: 0.5em auto auto 0;
}

.show_password {
  background: url('../img/icn-eye-yes.png') no-repeat;
}

.hide_password {
  background: url('../img/icn-eye-no.png') no-repeat;
}

p#password-help {
  text-align: right;
}

/*
 * Login form alerts.
 */

.alerts {
  font-weight: 900;
  height: 2em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.alerts p.error {
	color: #bb0000;
}

.status {
  height: 2em;
  margin-bottom: 1em;
  margin-top: 1em;
  text-align: center;
}

.hidden {
  display: none;
}

/*
 * Mobile media query.
 */

@media all and (min-width: 930px) {

  #background-image {
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -9999;

  }

  #content-pane {
    float: right;
    width: 40%;
    height: 100%;
    position: relative;
  }

  #image-pane {
    width: 60%;
    float: left;
  }

}

@media all and (max-width: 350px) {

 #content-pane {
    width: 300px;
  }
}

