/* ------------------------------
   全体レイアウト
------------------------------ */
body {
  font-family: sans-serif;
  background: #f5f5f5;
  padding: 40px;
  display: flex;
  justify-content: center;
}

/* ------------------------------
   中央の白いボックス
------------------------------ */
.box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ------------------------------
   入力欄
------------------------------ */
input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ------------------------------
   メインボタン（Login）
------------------------------ */
button.main {
  width: 100%;
  padding: 10px;
  background: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

/* ------------------------------
   レジスタボタン（register.html）
------------------------------ */
button {
  width: 100%;
  padding: 10px;
  background: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

/* ------------------------------
   補助ボタン（New Entry / Reset）
------------------------------ */
.sub-buttons {
  margin-top: 20px;
  text-align: center;
}

.sub-buttons button {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  background: white;
  color: #555;
  border: 1px solid #bbb;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.sub-buttons button:hover {
  background: #f0f0f0;
}

/* ------------------------------
   メッセージ欄
------------------------------ */
#msg {
  margin-top: 15px;
  color: #d00;
  font-size: 14px;
}

