.form-wrapper {
  margin-top: 40px;
  text-align: center;
  background: transparent;
  color: white;
  padding: 0 78px;
  max-width: 638px;
}


.form-wrapper h2 {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 54px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.9;

  margin: 69px 0 0 0;
}

.form-wrapper h3 {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  color: #A4A4B7;
  opacity: 0.9;

  margin: 0 0 26px 0;
}

.form-wrapper .form-field-group {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: auto;
  margin-bottom: 10px;
}

.form-wrapper .form-field-group label {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C3FBE0;
  text-align: left;
  margin-bottom: 8px;
  margin-top: 22px;
}

.form-wrapper .form-field-group input,
.form-wrapper .form-field-group select {
  font-family: 'Raleway';
  background-color: #1f203d;
  color: #aab0fe;
  border-radius: 14px;
  padding: 17px 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  border: none;
  outline: none;
  max-width: 100%;
  width: auto;
  display: flex;
  margin-bottom: 0;
}

.form-wrapper .form-field-group input.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 8px;
  background: #6F58F8;
  border-radius: 16px;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 10px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aab0fe;
  opacity: 1; /* Firefox */
}

/*CHECKBOX*/
.checkbox-container {
  font-family: 'Raleway';
  font-size: 14px;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 10px;
  margin-top: 10px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #5d77ff;
  color: white;
  border-color: #5d77ff;
  border-radius: 5px;
}

.checkbox-label {
  padding-left: 10px;
  line-height: 16px;
}
.checkbox-container:hover input ~ .checkmark {
  background-color: #5d77ff;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #5d77ff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}

label.validation-error {
  font-family: "Ubuntu";
  font-size: 14px;
  background: red;
  color: white;
  border-radius: 5px;
  padding: 5px;
  margin-top: 3px !important;
}

/*WALLETS*/
.wallet-wrapper {
  display: flex;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  flex: 2 100%;
}

#wallets {
  max-height: 54px;
  margin-left: 15px;
  flex: 1 auto;
  font-family: 'Raleway';
  background-color: #C3FBE0;
  color: #0D0D23;
  border-radius: 14px;
  padding: 17px 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  border: none;
  outline: none;
  max-width: 100%;
  width: auto;
  display: flex;
  margin-bottom: 0;
}

/*RESPONSIVE*/

@media only screen and (max-width: 1700px) {
  .form-wrapper {
    padding: 0 20px;
    justify-content: center;
    width: 80%
  }
}

@media only screen and (max-width: 1000px) {
  .form-wrapper {
    max-width: none;
    width: 80%;
  }
  .form-wrapper .image.logo {
    display: none;
  }

  .form-wrapper h2 {
    font-size: 28px;
    margin: 20px 0 0 0;
  }

  .form-wrapper h3 {
    font-size: 16px;
  }

  .form-wrapper .form-field-group .checkbox-container {
    margin-bottom: 20px;
  }
  .form-wrapper .form-field-group input.button {
    margin-top: 20px;
  }
}


