form input[type=text],
form input[type=email],
form input[type=password] {
  font-family: "Muli", sans-serif;
  font-weight: 200;
  font-size: 1rem;
  margin: 1.25rem 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-appearance: none;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  display: block;
  width: 100%;
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder {
  font-family: "Muli", sans-serif;
  font-weight: 200;
  color: #ffffff;
}

input[type=checkbox] {
  width: 3rem;
  height: 1.5rem;
  position: relative;
  border-radius: 1.5rem;
  -webkit-appearance: none;
}

input[type=checkbox]:before {
  content: '';
  width: 3rem;
  height: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.5rem;
  background: #D0D0D0;
  background: left 0.5s ease;
}

input[type=checkbox]:after {
  content: '';
  position: absolute;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  top: 0.25rem;
  background: #ffffff;
  border-radius: 1rem;
  transition: left 0.5s ease;
}

input[type=checkbox]:checked:before {
  background: #4EBAA5;
}

input[type=checkbox]:checked:after {
  background: #ffffff;
  left: 1.5rem;
}

button {
  text-align: center;
  align-self: center;
  padding: 0.5rem;
  border-radius: 2rem;
  border: none;
  padding: 0.5rem 2rem;
  width: calc(100% - 2rem);
  font-family: "Muli", sans-serif;
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0.4rem 1rem;
  line-height: 0.9rem;
  cursor: pointer;
  min-height: 2rem;
  min-width: max-content;
}

button.solid {
  background: #ffffff;
  color: #282B52;
  border: none;
}

button.solid:disabled {
  background: rgba(255, 255, 255, 0.25);
  border: none;
}

button.outline {
  border: 1px solid #FFFFFF;
  background: rgba(0, 0, 0, 0);
  color: #ffffff;
}

button.pink {
  background: #FF8CAE;
  color: #FFFFFF;
}

button.white {
  background: #FFFFFF;
  color: #443064;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.46);
  z-index: 10000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.popup.pink-circles {
  background-image: linear-gradient(-35deg, #895EE4 0%, #CD7994 100%);
  background-image: url("../assets/images/popupcircles.svg");
  background-position: center center;
  background-size: cover;
}

.popup {
  z-index: 10001;
  box-shadow: 5px 10px 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  width: max-content;
  height: max-content;
  padding: 2rem 5rem;
  max-width: 70%;
  max-height: 70%;
  font-family: "Muli", sans-serif;
  font-weight: 200;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .popup {
    padding: 2rem;
    max-width: 100%;
    max-height: 100%;
  }
}

.popup h3 {
  text-transform: uppercase;
  font-family: "Muli", sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  text-align: center;
}

.popup p {
  font-family: "Muli", sans-serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  text-align: center;
}

.popup .horizontal-buttons {
  margin-left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.popup .horizontal-buttons button {
  margin-left: 0;
  transform: none;
}

.full-popup {
  border-radius: 0.5rem;
  background: linear-gradient(-180deg, #3F9CBC 4%, rgba(63, 129, 188, 0.74) 35%, rgba(81, 63, 188, 0.36) 100%), url("../assets/images/background.svg"), linear-gradient(-180deg, #21294F 0%, #51456E 77%);
  background-size: cover;
  background-position: center;
  width: 350px !important;
  height: 500px !important;
  padding: 1rem;
  color: #ffffff;
}

@media only screen and (max-width: 750px) {
  .full-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    height: calc(100% - 2rem) !important;
    width: calc(100% - 2rem) !important;
  }
}

.simple-layout {
  display: flex;
  flex-direction: column;
}

.simple-layout .body {
  flex-grow: 1;
  flex: 0 0 1;
  overflow-y: auto;
}

.intro {
  overflow-x: hidden;
}

.intro .box {
  background: linear-gradient(-180deg, rgba(33, 41, 79, 0.65) 0%, rgba(81, 37, 109, 0.65) 77%), url("../assets/images/background.svg"), linear-gradient(-180deg, #21294F 0%, #51456E 77%);
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: "Muli", sans-serif;
  font-weight: 300;
  color: #ffffff;
}

.intro .box .contents {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
  max-width: 50rem;
  padding: 5rem 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.intro .box .contents .greeting {
  width: calc(50% - 5rem);
  padding: 2.5rem;
}

.intro .box .contents .greeting .logo img {
  width: 25%;
  margin-left: 1.5rem;
}

.intro .box .contents .greeting h1 {
  margin: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.intro .box .contents .greeting p {
  margin: 1rem;
  font-weight: 200;
}

.intro .box .contents .buttons {
  width: calc(50% - 5rem);
  align-self: center;
  padding: 2.5rem;
}

.intro .box .contents .buttons p {
  margin-left: 1rem;
}

.intro .box .contents .buttons button {
  width: calc(100% - 2rem);
  min-width: 12rem;
}

@media only screen and (max-width: 750px) {
  .intro .box .contents {
    padding: 0;
    width: 100%;
  }
  .intro .box .contents .greeting {
    width: calc(100% - 3rem);
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
  .intro .box .contents .buttons {
    width: calc(100% - 3rem);
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .intro .box .contents .buttons p {
    margin: 0.25rem 1rem;
  }
}

.intro .marketing {
  margin-top: 2rem;
  width: 100%;
  max-width: 50rem;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
}

.intro .marketing .sidebyside {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.intro .marketing .sidebyside > div {
  padding: 5%;
  width: calc(50% - 10%);
}

.intro .marketing .sidebyside > div.text {
  align-self: center;
}

.intro .marketing .sidebyside > div.text h1 {
  font-family: "Muli", sans-serif;
  font-size: 1.5rem;
  color: #594971;
}

.intro .marketing .sidebyside > div.text p {
  font-family: "Muli", sans-serif;
  font-size: 1rem;
  color: #282B52;
}

.intro .marketing .sidebyside > div.centred {
  align-self: center;
}

.intro .marketing .sidebyside > div.centred img {
  margin-left: 50%;
  transform: translateX(-50%);
}

.intro .marketing .sidebyside > div.centred button {
  margin-left: 50%;
  transform: translateX(-50%);
  background: #FF8CAE;
  color: #FFFFFF;
}

@media only screen and (max-width: 750px) {
  .intro .marketing .sidebyside > div {
    width: 90%;
  }
}

.intro .fine-print {
  font-size: 0.8rem;
  line-height: 1rem;
  margin: 0.5rem 1rem;
  font-family: "Muli", sans-serif;
  cursor: pointer;
  text-align: center;
}

.intro .fine-print a {
  color: #282B52;
  width: 75%;
}
