body {
  margin: 0;
  padding: 0;
  background-color: lightgray;
}

.header {
  display: flex;
  background-color: rgb(50, 167, 145);
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

#trybewarts-header-title {
  color: white;
}

.trybewarts-header-logo {
  width: 5%;
}

.login-input {
  padding: 5px;
  border-radius: 5px;
  border: 1px;
  margin-right: 5px;
}

#login-button {
  padding: 5px;
  width: 60px;
  border-radius: 5px;
  color: white;
  background-color: blueviolet;
  border: 1px;
}

.trybewarts-login {
  display: flex;
}

main {
  display: flex;
  justify-content: center;
  padding-top: 7%;
}

#evaluation-form {
  display: flex;
  width: 675px;
  flex-direction: column;
  align-items: center;
}

#trybewarts-forms-logo {
  height: 500px;
}

#form-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}

.form-info-input {
  padding: 5px;
  border-radius: 5px;
  border: 1px;
  margin: 5px;
  width: 47%;
}

.label-house {
  margin: 8px;
}

#house {
  width: 41.7%;
  border-radius: 5px;
  padding: 5px;
  background-color: white;
  border: 0;
}

#radio-buttons {
  width: 40%;
}

#label-family {
  margin-left: 10px;
}

#checkbox-buttons {
  width: 28%;
}

#label-content {
  width: 100%;
}

#form-selectors {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

#checkbox-buttons div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

hr {
  border: 0;
  clear: both;
  display: block;
  width: 98%;
  background-color: gray;
  height: 2px;
  margin: 20px;
}

#avaliation-buttons {
  display: flex;
  width: 100%;
  justify-content: center;
}

#textarea-buttons {
  display: flex;
  flex-direction: column;
  width: 75%;
  margin-top: 10px;
}

#textarea-buttons textarea {
  resize: none;
}

#agreement-checkbox {
  margin-top: 15px;
  width: 75%;
  display: flex;
}

#submit-btn {
  margin-top: 15px;
  width: 100%;
  border-radius: 5px;
  color: white;
  background-color: grey;
  border: 1px;
  padding: 10px;
}

footer {
  background-color: gray;
  padding: 5px;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
}
