body
{
  margin: 0;
  padding-top: 80px;
  font-family: Roboto, Arial, sans-serif;
    background-image: url('../icons/saints.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::before
{
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}

/* =========================
   Sign up page layout
========================= */
.sign-up-page
{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 70px 20px 40px 60px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.form-container {
  display: flex;
  justify-content: center;
  padding: 20px 20px 40px;
  position: relative;
  z-index: 1;
}

.form-container iframe {
  max-width: 100%;
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media screen and (max-width: 700px) {
  .form-container iframe {
    width: 100%;
    min-width: 0;
  }
  .form-container {
    padding: 12px 12px 40px;
  }
}

@media screen and (max-width: 480px) {
  .form-container {
    padding: 8px 8px 32px;
  }
  .form-container iframe {
    width: 100%;
    border-radius: 8px;
  }
}

/* iOS Safari fix */
@media (hover: none) and (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
  body::before {
    background-attachment: scroll;
  }
}
