* {
  box-sizing: border-box;
}

header {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #454545;
}

#header_title {
  font-size: 30px;
}

header a img {
  position: absolute;
  top: 1%;
  left: 10%;
  width: 100px;

}

#logout {
  position: absolute;
  right: 10%;
  width: 100px;
}

#logout button {
  width: 250px;
  background-color: #c8ad7f;
  color: #2b2920;
  border-radius: 10px;
  border: none;
  padding: 10px;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  padding-bottom: 2%;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

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

#nav {
  font-size: 25px;
  a {
    text-decoration: none;
    color: #2b2920;
    margin: 20px;
  }
  a:hover {
    text-decoration: underline;
    color: #c8ad7f;
  }
}


.formRegister {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 25px;
}

.formRegister div {
  width: 100%;
  margin: 10px 35%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.formRegister div label {
  color: #2b2920;
  margin-right: 15px;
  width: 150px;
}

.formRegister input,
select {
  color: #fff;
  background-color: #454545;
  outline: none;
  border: none;
  border-bottom: 1px solid #2b2920;
  margin-right: 35px;
  height: 50px;
  width: 350px;
  font-size: larger;
}

.btnSubmit {
  color: #fff;
  background-color: #2b2920;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  border: none;
  margin-top: 20px;
  align-self: center;
  font-size: larger;
}
