:host {
  --main-font: MainText, serif;
}
@font-face {
  font-family: MainText;
  src: url('../assets/fonts/litania.woff2') format('woff2'), url('../assets/fonts/litania.woff') format('woff');
}
@font-face {
  font-family: BoldText;
  src: url('../assets/fonts/dominican-small-caps-small-caps-webfont.woff2') format('woff2'), url('../assets/fonts/dominican-small-caps-small-caps-webfont.woff') format('woff');
}
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}
body {
  height: 100%;
  margin: 0;
  max-width: 100%;
  font-family: MainText, serif;
  font-weight: 300;
}
strong {
  font-family: BoldText, 'serif';
}
.container {
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}
.site_container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  min-height: 100%;
  max-width: 2000px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.site_main {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  background-color: #fff;
  min-height: 100vh;
}
.site_header {
  flex-shrink: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.site_content {
  flex-grow: 1;
  flex-shrink: 0;
  overflow: hidden;
}
.form-field {
  margin-bottom: 15px;
}
.form-field label {
  display: block;
  font-size: 13px;
  text-align: center;
  text-transform: lowercase;
  font-family: BoldText, serif;
  color: rgba(255, 255, 255, 0.6);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  text-align: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  border-radius: 5px;
  font-family: MainText, serif;
  color: #fff;
  font-size: 16px;
  box-shadow: 1px 1px 5px -2px #000000 inset;
  width: 100%;
}
.form-field input:active,
.form-field select:active,
.form-field textarea:active,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
}
.form-field textarea {
  resize: vertical;
}
.form-field.error input {
  background: rgba(50, 0, 0, 0.7);
}
.sheet-form .form-field label {
  color: #AD9571;
  text-align: left;
}
.sheet-form .form-field input,
.sheet-form .form-field select,
.sheet-form .form-field textarea {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}
.sheet-form .form-field input:active,
.sheet-form .form-field select:active,
.sheet-form .form-field textarea:active,
.sheet-form .form-field input:focus,
.sheet-form .form-field select:focus,
.sheet-form .form-field textarea:focus {
  outline: none;
}
.sheet-form .form-field.error input {
  background: rgba(50, 0, 0, 0.7);
}
button {
  font-family: MainText, serif;
  border-radius: 5px;
  background-color: #393939;
  background-image: linear-gradient(to top, #222, #333);
  border: none;
  text-transform: uppercase;
  padding: 5px 30px;
  box-shadow: 2px 2px 5px -2px #000;
}
button .btn-text {
  display: block;
  font-size: 16px;
  background: linear-gradient(to bottom, #fff, #767676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
button:active {
  box-shadow: 2px 2px 4px -2px #000 inset;
}
button:active .btn-text {
  transform: translate3d(1px, 1px, 0);
}
/*# sourceMappingURL=style.css.map */