@charset "utf-8";
/* Bump the ?v= token whenever theme.css changes — see the note in main.css. */
@import "theme.css?v=20260722c";   /* design tokens (see css/theme.css) */

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin-left: auto;
  margin-right: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 360px;
  margin: 0 auto 50px;
  padding: 45px;
  text-align: center;
  box-shadow: var(--shadow);
}
.form input {
  font-family: var(--font);
  outline: 0;
  color: var(--text);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: var(--font);
  text-transform: uppercase;
  outline: 0;
  background: var(--accent);
  width: 100%;
  border: 0;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: var(--accent-2);
  color: var(--accent-ink);
}
.form .message {
  margin: 15px 0 0;
  color: var(--faint);
  font-size: 12px;
}
.form .message a {
  color: var(--accent);
  text-decoration: none;
}

body {
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

.links {
    text-align: center;
}

.links a:link,
.links a:active,
.links a:visited {
    color: var(--link);
    font-style: inherit;
    text-decoration: underline;
}
.links a:hover {
    color: var(--link-hover);
    font-style: inherit;
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .login-page {
        padding: 0;
    }
}