html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-color: #faf7f0;
  color: #4a4947;
  font-family: "Bebas Neue", sans-serif;
}

#container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.2fr 1fr;
  gap: 2vh;
}

header {
  grid-column: 1/3;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#title {
  font-size: 3em;
  letter-spacing: 2px;
}

main {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  gap: 2vh;
}

#login {
  height: auto;
  width: 30%;
  margin: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  background-color: #d8d2c2;
  padding: 20px;
}

#t-l {
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 2px;
}

form {
  width: 90%;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

form label {
  width: 100%;
  font-size: 20px;
  letter-spacing: 1px;
}

form input {
  width: 94%;
  background-color: #faf7f0;
  border-radius: 5px;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4a4947;
  color: #faf7f0;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #333;
}

.error {
  text-align: center;
  color: red;
  letter-spacing: 2px;
  font-weight: 100;
}

.positiva {
  text-align: center;
  color: green;
  letter-spacing: 2px;
  font-weight: 100;
}

@media screen and (max-width: 769px) {
  #login {
    width: 50%;
  }
}

@media screen and (max-width: 443px) {
  #login {
    width: 80%;
  }
}
