html{
  background-image: url('https://mercatvs.com/pesquisa/images/groupofpeople.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

body {
  padding: 15px;
  height: 100vh;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: Roboto;
  color: #161616;
}

.page {
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.header {
  margin-bottom: 45px;
}

.header img {
  height: 90px;
  display: block;
  margin: 0 auto 45px auto;
}

.title {
  flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #ff9600;
}

form, main{
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 0px 15px #dee0e7;
}

main{
  text-align: center;
}

.form-row {
  display: grid;
  align-items: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.form-row label {
  font-size: 16px;
}

.form-row input,
.form-row select {
  font-size: 14px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  color: #737373;
  margin-top: 10px;
  background-color: #f3f3f3;
}

.next-container {
  margin-top: 70px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.next-button {
  text-decoration: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff9600;
  padding: 7px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.next-button .arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
}

.question {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 40px;
}

.options {
  display: flex;
  margin-bottom: 60px;
}

.option {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.option input {
  margin: 0 5px 0 0;
}

.thanks-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.thanks-text {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}

.thanks-subtext {
  font-size: 20px;
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

@media(max-width: 992px){
  body {
    height: unset;
    padding: 60px 15px;
  }
}

@media(max-width: 768px){
  body {
    padding: 40px 15px;
  }
  .header {
    margin-bottom: 30px;
  }
  .header img {
    margin: 0 auto 15px auto;
  }
  .title {
    font-size: 24px;
  }
  .options {
    display: block;
    margin-bottom: 0;
  }
  .option {
    margin: 7.5px 0;
  }
  .thanks-text {
    font-size: 18px;
  }
  .thanks-subtext {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .next-container {
    margin-top: 40px;
  }
}