* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.login-page-root {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    padding-bottom: 0px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 360px;
    text-align: center;
    margin: 0 auto;
}
.logo {
    display:none;
  width: 6em;
  max-width: 1024px;
  margin-bottom: 0;
  margin-top: 0;
}
h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 8px;
  color: #111827;
}
button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}
button:hover {
  background-color: #1d4ed8;
}
.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.dev-login {
  margin-top: 20px;
}
.login-page-root .version {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 8pt;
    color: #999999;
}