@import url('https://fonts.googleapis.com/css2?family=Roboto%20Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

body {
  font-family: "Oswald", sans-serif;
  background-color: #F5F5F5;
}

.main {
  background-color: #F7F2ED;
  margin-bottom: 90px;
}

.main:after {
  content: "";
  display: block;
}

body[admin="true"] header {
  background-color: #12b507 !important;
}

.head {
  display: flex;
  height: 100%;
  padding: 25px 40px;
}

@media screen and (max-width: 767px) {
  .head {
    padding: 15px 15px;
  }
}

.head .nav {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  margin: 0px;
}

.head .nav li {
  margin: 0px 20px;
}

.head .nav a, .footer a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.125em;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.button {
  background-color: #347E96;
  border-radius: 4px;
  color: white;
  padding: 20px 40px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-top: 5px solid #421254;
  background-color: #782663;
  padding: 25px 40px 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .nav-item {
  margin: 0px 20px;
}

@media screen and (max-width: 767px) {
.footer {
  padding: 15px 15px 15px 15px;
}
}

.footer .spacer {
  flex-grow: 1;
}

p {
  font-size: 16pt;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

.login-form {
  position: fixed;
  background-color: #F5F5F5;
  color: rgb(18, 18, 18);
  border-radius: 5px;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
}

.login-form .content {
  padding: 20px;
}

.login-form .errorlist {
  list-style: none;
  padding: 0px;
  color: #e35f5f;
  border: 1px solid #e35f5f;
  border-radius: 5px;
  padding: 10px 12px;
  font-weight: 700;
}

.login-form .login-header {
  background-color: #C2405C;
  height: auto;
  padding: 15px 16px;

  display: flex;
  flex-direction: row;
  justify-content: center;
}

.login-form label {
  color: #AEB4B7;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.login-form input {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;

  background: #FFFFFF;
  border: 1px solid #EFF1F1;
  border-radius: 4px;
}

.login-form .submit-button button,
.login-form input[type="submit"] {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
  background: #347E96;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  padding: 10px 15px;
  border: none;
  text-transform: uppercase;
  width: 100%;
}

.login-form fieldset {
  border: none;
}

.login-form p {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

.login-form a {
  font-family: 'Work Sans';
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #347E96;
  text-decoration: none;
  display: block;
  text-align: right;
}

.floaty {
  position:absolute;
  bottom: 100px;
  left: 100px;
}

.floaty h1 {
  font-family: 'Oswald';
  font-size: 34px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.floaty p {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.policy-item {
  margin-top: 20px;
}

.policy-item .policy-title {
  font-weight: 500;
  font-size: 25px;
}

.policy-item .policy-text {
  margin: 20px 0px;
  padding: 0px 20px;
}

.policy-item ul {
  list-style: lower-alpha;
}

@media screen and (min-width: 768px) {
  #app {
    margin-top: 90px;
  }

  .main {
    margin-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  #app {
    margin-top: 70px;
  }

  .main {
    background-color: transparent;
    margin-top: 70px;
  }
  .login-form {
    position: relative;
  }

  .floaty {
    position: relative;
    top: 0px;
    left: 0;
    padding: 20px;
  }
}

/* In App Overrides */
.show-title,
.page-title {
  font-family: 'Kavoon', cursive !important;
  font-weight: 400;
  font-size: 62px !important;
}