/* リセット（iOS Safari対策） */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
  background: #f5f5f5;
}

/* 画面中央 */
.container {
  max-width: 360px;
  margin: 15vh auto;
  padding: 24px;
  background: white;
  border-radius: 8px;
}

/* 入力欄 */
input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 16px; /* ← iOS拡大防止 */
}

/* ボタン */
button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 4px;
}

/* タップ無効化事故防止 */
button {
  pointer-events: auto;
}

/* メッセージ */
.error {
  color: #d32f2f;
  margin-top: 12px;
}

.logout {
  color: #388e3c;
  margin-top: 12px;
}
