html {
  box-sizing: border-box;
  border-collapse: collapse;
  line-height: 1;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

body * {
  margin: 0;
  padding: 0;
  border-collapse: inherit;
  font-weight: normal;
  background-repeat: no-repeat;
}

body *,
body *:before,
body *:after {
  box-sizing: inherit;
}


ul, ol, menu {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

fieldset {
  border: none;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
@font-face {
  font-family:'Futura';
  src: url('/fonts/FuturaStd-Book.eot');
  src: url('/fonts/FuturaStd-Book.eot?#iefix') format('embedded-opentype'),
    url('/fonts/FuturaStd-Book.woff2') format('woff2'),
    url('/fonts/FuturaStd-Book.woff') format('woff'),
    url('/fonts/FuturaStd-Book.ttf') format('truetype'),
    url('/fonts/FuturaStd-Book.svg#FuturaStd-Book') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  /*overflow-y: scroll;*/
  font-family: 'Futura', sans-serif;
  font-size: 16px;
}

body {
  width: 100%;
  height: 100%;
}

.old-browser {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3% 0;
  z-index: 1000;
  background: rgba(40, 0, 0, 0.7);
  color: white;
  font-size: 1.2em;
  line-height: 1.4;
  text-align: center;
}

.old-browser a {
    text-decoration: underline;
  }
.login,
.admin {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#231f20), to(#325856));
  background: linear-gradient(to bottom, #231f20, #325856);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  color: #55B2AF;
}

.login h1, .admin h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.25em;
    margin-bottom: 40px;
  }

.login p, .admin p {
    text-align: center;
  }

.login input,
  .login select,
  .admin input,
  .admin select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    border: 2px solid #FF9034;
    border-radius: 0;
    font-size: 1rem;
    display: block;
    padding: 8px;
    text-align: center;
    margin: 0 auto 15px auto;
    color: white;
    min-width: 275px;
  }

.login .select-container, .admin .select-container {
    position: relative;
  }

.login .select-arrow, .admin .select-arrow {
    position: absolute;
    top: 17px;
    left: calc(50% + 120px);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #FF9034;
  }

.login label, .admin label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 7px;
    text-align: center;
  }

.login button, .admin button {
    border: 2px solid #FF9034;
    color: #FF9034;
    text-transform: uppercase;
    padding: 8px 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.9em;
    display: block;
    margin: 40px auto 20px auto;
  }

.login button:hover, .admin button:hover {
      color: white;
      background-color: #FF9034;
    }
