body {
  background: #191919;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  text-align: center;
  width: 400px;
  margin: auto;
}

#logo {
  width: 65px;
  height: auto;
}

#top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 20px;
  padding: 30px;
}

div#header {
  background-color: #202020;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 2px solid #a3a3a3;
  border-radius: 20px;
  text-align: left;
  width: 360px;
}

header#title {
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  font-size: 48px;
  text-align: left;
  white-space: nowrap;
  justify-self: start;
}
#show-form-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #333;
  color: #e0e0e0;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}
#show-form-btn:hover {
  background-color: #555;
}
#signout-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: #e0e0e0;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}
#signout-btn:hover {
  background-color: #555;
}
