/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('/assets/open-sans-v23-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/assets/open-sans-v23-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
  font-family: 'Open Sans', sans-serif;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 0 0 0 1rem;
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: 1.5rem;
  z-index: 999;
  background-color: #fafafa;
  color: #000000;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
}

header h1 {
  margin: 0;
}

main {
  margin: 4.125rem 0 0 0;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  min-height: calc(100vh - 7.25rem);
}

section {
  flex: 0 1 auto;
}

footer {
  padding: 0.125rem 1rem 0 1rem;
  width: calc(100% - 2rem);
  height: 2rem;
  color: #eee;
  background-color: #333;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

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

#section-404 {
  text-align: center;
  width: 100%;
}

.underline {
  text-decoration: underline;
}

.card {
  background: #fff;
  border-radius: 0.125rem;
  display: inline-block;
  margin: 0.5rem 0.25rem;
  position: relative;
  padding: 0.125rem 0.5rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0,0,0,0.16), 0 0.1875rem 0.375rem rgba(0,0,0,0.23);
}

.flex-form {
  display: flex;
  flex-flow: column nowrap;
}

.form-section {
  flex: 0 1 auto;
  margin: 1rem 0 0 0;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #000 transparent #000 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}