.wrapper {
  height: 100vh;
  position: relative;
  display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
}
.wrapper:before {
  width: 800px;
  height: 100%;
  background: url("/img/smashvents-party.jpg") no-repeat top right;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

main {
  width: 60%;
  position: relative;
  z-index: 2;
  padding: 10px 0 10px 10px;
}
@media only screen and (max-width: 1023px) {
  main {
    width: 100%;
    padding: 10px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  main {
    width: 70%;
  }
}
main > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("/img/confetti.png") no-repeat top left #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  main > div {
    padding-top: 20px;
  }
}

.image {
  width: 40%;
  background: url("/img/smashvents-party.jpg") no-repeat top right;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .image {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .image {
    width: 30%;
    background-position: left top;
  }
}
.image:after {
  width: 100%;
  height: 100%;
  background: rgba(13, 18, 34, 0.41);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  content: "";
}

.intro, .user-form {
  width: 75%;
}
@media only screen and (max-width: 1279px) {
  .intro, .user-form {
    width: 90%;
  }
}

.intro {
  text-align: center;
  margin: 30px auto;
}
.intro h2 {
  color: #3D4B5B;
  font-size: 35px;
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  .intro h2 {
    font-size: 28px;
  }
}
.intro img {
  width: 220px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .intro img {
    width: 150px;
  }
}
.intro p {
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .intro p {
    font-size: 15px;
  }
}

.user-form {
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 7px 55px rgba(57, 71, 109, 0.12);
  -moz-box-shadow: 0px 7px 55px rgba(57, 71, 109, 0.12);
  box-shadow: 0px 7px 55px rgba(57, 71, 109, 0.12);
}
@media only screen and (max-width: 767px) {
  .user-form {
    padding: 15px;
  }
}
.user-form h1 {
  font-size: 30px;
  color: #D1022E;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .user-form h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

