body {
  font-family: 'Oswald', sans-serif;
  padding: 0!!important;
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.page-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-content: center;
  justify-content: center;
  position: relative;
  background: no-repeat center/80% url("../img/kaferdam-background.jpg");
  background-size: cover;
}


@media screen and (max-width: 800px) {
  .page-wrapper {
    background: no-repeat center/80% url("../img/kaferdam-background-mobile.jpg");
    background-size: cover;
    overflow: hidden;
    height: 100%;
    min-height: 0;
  }
  .main-container {
    width: auto;
  }
}

.main-container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

.content-wrapper {
  width: 100%;
  max-width: 358px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inputs-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-input {
  display: flex;
  justify-self: stretch;
  align-items: stretch;
  flex-direction: column;
  align-content: flex-start;
  width: 100%;
}

input {
  border: 0;
  border-bottom: 0.125rem #fff solid;
  background: transparent;
  padding:  0.5rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  border-radius: 0;
}

.btn-primary {
  background-color: #03141D;
  color: #fff;
  border-radius: 0.25rem;
  border: 0;
  width: 100%;
  display: flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  transition: color 0.5s;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

label, .newsletter-disclaimer, .footer-note {
  color: #B1B1B1;
  font-size: 0.75rem  ;
}

h1 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
  margin: 0;
}


/* Widths */

.max-w-10 {
  max-width: 10rem;
}


/* Margins */

.m-0 {
  margin: 0;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mr-16 {
  margin-right: 1rem;
}