@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
body {
  margin: 0;
  padding: 0;
  bottom: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  body.lock {
    overflow: hidden;
  }
}
body ul, body li {
  list-style: none;
}
body a {
  text-decoration: none;
}

html, body {
  height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.img_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.write_container {
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  padding: 50px;
  margin: 0 auto;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .write_container {
    max-width: 400px;
  }
}

.write_form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.write_form__group label {
  font-size: 20px;
}
@media (max-width: 768px) {
  .write_form__group label {
    font-size: 18px;
  }
}
.write_form__group input {
  width: 50%;
}
.write_form__group textarea {
  min-width: 300px;
  min-height: 200px;
}
.write_form__group {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .write_form__group {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.send {
  color: white;
  background-color: green;
  cursor: pointer;
  padding: 10px;
  border: none;
  text-transform: uppercase;
  width: 100%;
}
.send:hover {
  background-color: blue;
}

.home_btn {
  color: black;
  text-decoration: none;
}
.home_btn:hover {
  color: red;
}
.home_btn:active {
  color: green;
}/*# sourceMappingURL=write_form.css.map */