body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background-image: url("../../img/blob-scene-haikei.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.all {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  text-align: center;
  background-color: #1b022d;
  color: #2f9b88;
  border-radius: 10px;
  width: 700px;
  min-height: 320px;
}
h1{
  display: inline-block;
  margin-right: 25px;
}
#homepage {
  width: 25px;
  float: left;
  margin-top: 30px;
  margin-left: 20px;
  cursor: pointer;
}
form {
  margin-bottom: 10px;
}

#left-inputs {
  float: left;
  margin-left: 100px;
}

#left-inputs input,
#right-inputs input,
#right-inputs select {
  padding: 10px;
  margin-bottom: 10px;
  width: 110%;
  border-radius: 5px;
  border: 1px solid lightgrey;
  box-sizing: border-box;
}

#right-inputs {
  float: right;
  margin-right: 100px;
}

input[type="submit"] {
  display: inline-block;
  width: 150px;
  padding: 10px 20px;
  background-color: #2f9b88;
  color: #1b022d;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.error {
  width: 130px;
  color: #f44336;
  margin: 0;
  margin-bottom: 10px;
  margin-left: 20px;
  padding: 8px 12px;
  border-radius: 5px;
  display: none;
  font-size: 11px;
}
#login{
  color: #2f9b88;
  text-decoration: none;
}
#login:hover {
  text-decoration: underline;
}