nav {
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 1px solid black;
  background: white;
}

nav .nav-brand {
  font-family: var(--font-family-header);
  font-size: 20px;
  text-decoration: none;
}

nav .nav-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.page-content {
  max-width: 800px;
  min-height: 100%;
  padding: 0px 32px;
  margin: 0 auto;
}

.page-content.nav {
  display: flex;
  padding-top: 8px;
  padding-bottom: 8px;
}

button,
input[type="submit"] {
  position: relative;
  padding: 2px 16px;
  background: none;
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;

  box-shadow:
    1px 1px 0px 0px black,
    2px 2px 0px 0px black,
    3px 3px 0px 0px black;

  transition: 0.2s;
}

input[type="submit"] {
  background: black;
  color: white;
}

button:hover {
  background: #e6e6e6;
}

input[type="submit"]:hover {
  background: #262626;
}

button:active,
input[type="submit"]:active {
  box-shadow:
    1px 1px 0px 0px transparent,
    2px 2px 0px 0px transparent,
    3px 3px 0px 0px transparent;

  transform: translate(3px, 3px);
}

input[type="text"],
textarea {
  outline: none;
  background: none;
  border: 1px solid black;
  border-radius: 4px;
  padding: 4px 12px;

  box-shadow:
    1px 1px 0px 0px black,
    2px 2px 0px 0px black,
    3px 3px 0px 0px black;
}

::placeholder {
  color: var(--color-muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input {
  width: fit-content;
}

.nav-currentUser {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-avatar {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.test-warning {
  position: fixed;
  right: 0;
  bottom: 0;
  background: black;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
}