/* ログインページ専用スタイル */

/* 基本背景色 */
body {
  background-color: #f9f4ec !important;
}

/* ログインページのメインコンテナ */
.min-h-screen {
  background-color: #f9f4ec !important;
}

/* ログインフォームカード */
.rounded-lg.shadow-xl {
  background: white !important;
  border: 1px solid #e5e7eb;
}

/* 入力フィールドのスタイル */
input[type="text"],
input[type="password"] {
  border-color: #d1d5db !important;
  background-color: white !important;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* ログインボタン */
button[type="submit"] {
  background-color: #3b82f6 !important;
  border-color: #2563eb !important;
}

button[type="submit"]:hover {
  background-color: #2563eb !important;
}

/* リンクの色 */
a {
  color: #3b82f6 !important;
}

a:hover {
  color: #1d4ed8 !important;
}

/* チェックボックス */
input[type="checkbox"] {
  accent-color: #3b82f6;
}

/* エラーメッセージ */
.bg-red-50 {
  background-color: rgba(254, 242, 242, 0.9) !important;
  border-color: #fecaca !important;
}

/* デバッグ情報 */
.bg-blue-50 {
  background-color: rgba(239, 246, 255, 0.9) !important;
  border-color: #bfdbfe !important;
}

/* ログイン済みメッセージ */
.bg-green-50 {
  background-color: rgba(240, 253, 244, 0.9) !important;
  border-color: #bbf7d0 !important;
}
