html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.max-width-95 {
  max-width: 95vw;
}

.max-width-1 {
  max-width: 80vw;
}

.max-width-2 {
  max-width: 60vw;
}

.margin-auto {
  margin: auto;
}

.m-1 { margin: 1rem 0; }
.m-2 { margin: 2rem 0; }
.m-3 { margin: 3rem 0; }
.m-15 { margin: 1.5rem 0; }
.m-25 { margin: 2.5rem 0; }

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-muted {
  color: var(--color-text-muted, #78716c);
}

.p-1 { padding: 1vh; }
.p-2 { padding: 2rem; }
.p-3 { padding: 1vh; }
.p-15 { padding: 1.5rem; }
.p-25 { padding: 2.5rem; }

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

.form-content label {
  margin-bottom: 0.5rem;
}

.form-content input {
  margin-bottom: 1rem;
}
