body {
  align-items: center;
  background-color: lightyellow;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100vw;
}

body > div {
  background-color: white;
  box-shadow: 3px 3px 25px darkgray;
  border-radius: 5px;
  padding: 10px;
}

header {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

header,
main {
  padding: 10px;
}

header img {
  display: block;
  margin-right: 20px;
  width: 150px;
}

h1,
h2 {
  margin-bottom: 20px;
  margin-top: 0;
}

h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

header h1 {
  font-weight: normal;
  margin-bottom: 0;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.error,
.info {
  border-radius: 5px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px;
}

.error {
  background-color: darkred;
}

.info {
  background-color: darkblue;
}

form > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

form > div:last-child {
  margin-bottom: 0;
}

form label {
  font-size: 16px;
  margin-bottom: 5px;
}

form input[type="password"],
form input[type="text"] {
  border: 3px solid salmon;
  border-radius: 5px;
  font-size: 16px;
  padding: 5px;
}

.button {
  background-color: salmon;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
}

.button:hover {
  filter: brightness(120%);
}

.button-bar {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.button-bar > .button:last-child {
  margin-inline-start: auto;
}

.pass {
  max-width: 100%;
}
