/* div {
  border: 1px solid red;
} */

.registration-container {
  color: var(--white1);
  margin-top: 150px;
  padding-bottom: 80px;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.registration {
  background: var(--zaliasLinear1);
}

.registration-form {
  display: flex;
  flex-direction: column;
}

.registration-head {
  text-align: center;
}

.registration-form {
  width: 100%;
  max-width: 460px;
  padding: 30px;
  background: var(--background1);
  margin-left: auto;
  margin-right: auto;
}

.registration-foot {
  margin-left: auto;
  margin-right: auto;
}

.registration-head h2 {
  margin-top: 50px;
  margin-bottom: 15px;
}

.registration-head .body2 {
  margin-bottom: 40px;
}

.registration-head {
  margin-bottom: 25px;
}

.registration-form input {
  margin-bottom: 15px;
}

.registration-form textarea {
  margin-bottom: 20px;
}

.registration-foot {
  margin-top: 20px;
}

.registration-form .body3::placeholder {
  color: var(--grey1);

  font-size: 14px;
  line-height: 17px;
  font-family: "Barlow";
  font-weight: 400;
}

.registration-form .body3 {
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
}

.registration-form textarea {
  height: 120px;
  resize: none;
}

#reg-msg {
  display: none;
  /* margin-bottom: 10px; */
  margin-top: -20px;
}

#registration-btn {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border-radius: 5px;
  background-color: var(--green2);
  transition: 0.3s ease;
  color: var(--white1);
  text-decoration: none;
  text-align: center;
}
#registration-btn:hover {
  background-color: var(--green4);
}
@media screen and (max-width: 1150px) {
  .registration-container {
   margin-top: 60px;
  }
}

@media screen and (max-width: 783px) {
  .registration-container {
    margin-top: 58px;
  }

  .registration-head h2 {
    margin-top: 30px;
    margin-bottom: 15px;

    font-size: 24px;
    line-height: 27px;
    font-family: "Barlow";
    font-weight: 600;
  }

  .registration-head .body2 {
    margin-bottom: 30px;

    font-size: 14px;
    line-height: 20px;
    font-family: "Axiforma";
    font-weight: 400;
  }

  .registration-form {
    padding: 15px;
  }

  .registration-head {
    margin-bottom: 25px;

    font-size: 20px;
    line-height: 24px;
    font-family: "Barlow";
    font-weight: 600;
  }

  .registration-form input {
    margin-bottom: 15px;
  }

  .registration-form textarea {
    margin-bottom: 20px;
  }

  .registration-foot {
    margin-top: 20px;

    font-size: 12px;
    line-height: 17px;
    font-family: "Axiforma";
    font-weight: 400;
  }

  .registration-container {
    padding-bottom: 30px;
  }

  #registration-btn {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 5px;
    background-color: var(--green2);
    transition: 0.3s ease;
    color: var(--white1);
    text-decoration: none;
    text-align: center;
  }
}
