/* auth.css — Auth screen with PIN pad */

#screen-auth .screen-content {
  align-items: center;
  justify-content: center;
  padding-top: 15vh;
}

/* === FORM === */
.auth-form {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.input-group label {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
}

#auth-username,
#auth-pin {
  padding: 12px 16px;
  font-size: 15px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

#auth-username::placeholder,
#auth-pin::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

/* === AUTH TOGGLE === */
.auth-toggle {
  text-align: center;
}

.auth-toggle button {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === AUTH STATUS === */
.auth-status {
  text-align: center;
  font-size: 12px;
  color: var(--danger);
  min-height: 20px;
  margin-top: var(--space-sm);
}

/* === AUTH SUBMIT === */
#auth-submit {
  margin-top: var(--space-sm);
}
