/* vim: tabstop=2 shiftwidth=2 expandtab
*/

html {
  height: 100%;
}

body {
  height: 100%;

  background: url(../images/landing_background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

img.logo {
  max-height: 88px;
}

.inner-box {
  max-width: 300px;
}

.outer-box {
  max-width: 500px;
}

.login-box {
  background: rgba(0, 0, 0, 0.5);
  /* background: rgba(255, 255, 255, 0.5); */
  box-sizing: border-box;
  padding: 70px 30px;
}

.login-box input {
  width: 100%;
  margin-bottom: 20px;
}

.login-box input[type="submit"]:hover {
  cursor: pointer;
  background: LightGray;
}

.login-link-button {
  text-decoration: none;
  color: DimGray;
}

.login-link-button:hover {
  text-decoration: none;
  color: LightGray;
}

/*** FONTS ***/
.open-sans-condensed {
  font-family: 'Open Sans Condensed', sans-serif;
}

