.form-block {
  margin-top: 25px;
}

.social_links {
  z-index: 99;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5% 25px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-small {
  color: #271a49;
  font-weight: 300;
}

.nav-link {
  float: right;
  color: #271a49;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-span {
  margin-right: 8px;
  font-weight: 500;
}

.signup_wrap {
  z-index: 10;
  flex-direction: column;
  max-width: 500px;
  display: flex;
  position: relative;
}

.address-wrapper {
  align-items: center;
  display: flex;
}

.form {
  display: flex;
}

.social_link {
  margin-right: 15px;
}

.site-wrap {
  background-color: #fcfcfc;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: hidden;
}

.success-message {
  color: #fff;
  background-color: #fe6667;
  border-radius: 4px;
  font-weight: 300;
}

.paragraph {
  color: #271a49;
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
}

.heading {
  color: #271a49;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1;
}

.text-field {
  color: #271a49b0;
  border: 1px solid #5756dc1a;
  border-radius: 4px;
  min-height: 45px;
  font-weight: 300;
}

.text-field:focus {
  border-color: #fe6667;
}

.submit-button {
  background-image: linear-gradient(96deg, #fe4748, #f77387);
  border-radius: 4px;
  height: 45px;
  margin-left: 15px;
  padding-left: 31px;
  padding-right: 31px;
  font-weight: 300;
  box-shadow: 0 4px 20px -2px #fe66675c;
}

.full_wrap {
  background-image: url('../images/bg.png');
  background-position: 85px 73px;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  padding: 90px 5%;
  display: flex;
}

.navbar {
  background-color: #0000;
  padding: 20px 5%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 991px) {
  .nav-link {
    float: right;
  }

  .signup_wrap {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .full_wrap {
    background-position: 0 0;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .social_links {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .social_links {
    flex-flow: column;
  }

  .text-small {
    text-align: center;
    padding-top: 0;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
  }

  .signup_wrap {
    padding-bottom: 10px;
  }

  .address-wrapper {
    padding-top: 10px;
  }

  .form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .heading {
    font-size: 36px;
  }

  .submit-button {
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .full_wrap {
    padding-right: 5%;
  }

  .navbar {
    padding-left: 2%;
    padding-right: 2%;
  }
}


