body {
  font-size: 16px;
}

#signup {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100vh;
  width: 500px;
}

#signup form {
  width: 100%;
}

#signup form input {
  border: 1px solid #333333;
  height: 30px;
  width: 100%;
}

#signup form #btn_create {
  cursor: pointer;
}

#login {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
}

#home {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
}

#home h2 {
  margin: 50px auto;
  max-width: 500px;
}

#home #message {
  margin: 0;
}

#home #loadFile {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 200px;
  width: 500px;
}

#home #loadFile #btnLoad {
  cursor: pointer;
  border: none;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  background-color: #12223f;
  margin: 4px 2px;
  cursor: pointer;
  width: 120px;
}

#home .logout {
  position: absolute;
  top: 50px;
  right: 0;
  border: none;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  background-color: #ad2e2e;
  margin: 4px 2px;
  cursor: pointer;
}
