* {
  margin: 0;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  background-image: url("/img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

body::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  content: "";
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0 96px;
}

.header__logo {
  height: 32px;
}

.container {
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

.form__label {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.form__range {
  display: flex;
  align-items: center;
  gap: 15px;
}

.form__range-input {
  width: 100%;
}

.form__group {
  margin-top: 48px;
}

.form__group:first-child {
  margin-top: 0;
}

.form__range-output {
  padding: 6px 12px;
  border: 2px solid #ccc;
  border-radius: 24px;
  font-weight: bold;
  font-size: 18px;
  min-width: 42px;
  text-align: center;
}

.form__textarea {
  width: 100%;
  font-size: inherit;
  font-family: inherit;
}

.form__submit {
  background-color: rgb(255, 148, 21);
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: 0;
  border-radius: 24px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
}

.message {
  width: 100%;
}

.message__icon {
  display: block;
  max-width: 100px;
  margin: 0 auto 40px;
}

.message__text {
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
}
