@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-content: center;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  border-radius: 15px;
}

label,
input,
button,
textarea {
  display: block;
  resize: none;
}

label {
  width: 90%;
}

textarea {
  min-height: 6em;
}

input,
textarea,
button {
  width: 90%;
  border: solid 0.3px rgb(111, 110, 110);
  border-radius: 8px;
  padding: 1em;
  margin-top: 0.8em;
  margin-bottom: 1.2em;
  outline: none;
}

button {
  border: none;
  background-color: rgb(38, 96, 69);
  color: white;
}

h1 {
  margin-bottom: 1em;
  width: 90%;
}
.logo-container {
  width: 90%;
}

.logo {
  width: 10em;
}

p {
  width: 90%;
  border-top: solid 0.3px rgb(111, 110, 110);
  border-bottom: solid 0.3px rgb(111, 110, 110);
  padding: 1em;
}

@media (min-width: 900px) {
  main {
    margin: 3.5%;
    width: 50%;
    box-shadow: 5px 5px 15px 5px rgba(216, 215, 215, 0.519);
  }
}

