html, body {
  background: url("/static/img/grid.png") repeat-x;
  background-attachment: fixed;
            display: flex;
            justify-content: center;
            height: 100vh;
            background-color: #f5f5f5;
            margin: 0;

}
.filler {
    flex: 0.1;
}
.login-card {
    width: 600px;
    max-width: 600px;
    height: 100%;
    max-height: 250px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.error-message {
    color: red;
    font-weight: bold;
}
.success-message {
    color: green;
    font-weight: bold;
}

.code {
    color: green;
}

footer {
    position: fixed;
    bottom:0;
}
.help {
  color: #666;
  font-size: 0.8em;
}
a {
  color: inherit;
  text-decoration: none;
}

a + a {
  margin-left: 1em;
}

a:hover {
  text-decoration: underline;
}

.matter-button-contained {
min-width: auto;
}