/* ============================
   バスナビ君・DIGILOG 共通ログインスタイル
   ============================ */

body {
  background-color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color: #333;
  margin: 0;
}

/* ログインカード */
.login-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 420px;
  text-align: center;
  transition: transform 0.3s ease;
}

.login-card:hover {
  transform: translateY(-2px);
}

/* タイトル部分 */
.login-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2f855a;
}

.login-title i {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.admin-label {
  font-size: 0.9rem;
  color: #9c6bc1;
  margin-top: 5px;
}

/* 入力欄 */
form {
  margin-top: 1rem;
}

input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus {
  border-color: #2f855a;
}

/* ボタン */
.btn-login {
  display: block;
  width: 100%;
  background-color: #2f855a;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.btn-login:hover {
  background-color: #276749;
}

/* フッター */
.footer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}
