@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
body {
  height: 100vh;
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #475151;
}
header nav {
  display: flex;
  align-items: center;
}
header nav span {
  font-size: 20px;
  margin-left: 10px;
  color: #ffffff;
}
#banner {
  width: 100%;
  height: 300px;
  background-image: url(./imgs/reuniao-banner.svg);
  background-position: top;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
#banner h1 {
  text-align: center;
  align-items: center;
}
#sec-form {
  padding: 20px 20px 50px 20px;
  text-align: center;
  background-color: #f8f8f7;
  min-height: 50vh;
}
#sec-form h2 {
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: #555555;
}
#sec-form i {
  color: #0ba132;
}
#my-form {
  margin-top: 20px;
  text-align: center;
}
#my-form label {
  color: #475151;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}
#my-form select,
input {
  width: 200px;
  height: 40px;
  padding-left: 5px;
  border: solid 1px #ececec;
}
#my-buttons {
  padding-top: 50px;
}
#my-buttons button {
  margin: 10px;
  width: 200px;
  height: 40px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
}
.limpar {
  background-color: #475151;
}
.enviar {
  background-color: #0ba132;
}
#my-buttons button:hover {
  background-color: #046e20;
}
#btn-back {
  margin: 10px;
  width: 200px;
  height: 40px;
  border: none;
  cursor: pointer;
  background-color: #0ba132;
  color: #ffffff;
  font-size: 18px;
}
#btn-back:hover {
  background-color: #046e20;
}
#rodape {
  min-height: 30px;
  padding: 5px;
  text-align: center;
  align-items: center;
}
#rodape a {
  color: #ffffff;
  text-decoration: none;
}
#sucesso {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
}
#sucesso a {
  text-decoration: none;
  color: #ffffff;
}
#sucesso i {
  width: 300px;
}
@media only screen and (max-width: 600px) {
  #banner {
    height: 200px;
  }
  #sec-form h1 {
    font-size: 25px;
  }
  #my-form label {
    margin-top: 5px;
  }
  #my-form select {
    width: 250px;
    margin-bottom: 20px;
  }
  #my-form input {
    width: 250px;
    margin-bottom: 20px;
  }
}
