.card-title {
  margin-bottom: 1.5rem; /* タイトルの下に余白を追加 */
  color: #64a7ff; /* 文字色を変更 */
  font-weight: bold; /* 太字にする */
  font-size: 3.0rem; /* フォントサイズを変更 */
}

/* スクリーンサイズが小さい場合にフォントサイズを調整 */
@media (max-width: 768px) {
  .card-title {
    font-size: 2.5em; /* フォントサイズを縮小 */
  }
}

@media (max-width: 480px) {
  .card-title {
    font-size: 2em; /* フォントサイズをさらに縮小 */
  }
}

/* 目玉アイコンの調節（パスワード表示非表示ボタン） */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group .form-control {
  border-radius: 0;
  padding-right: 3rem; /* アイコンのスペース分パディングを追加 */
}

.input-group .btn {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  height: 100%;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; /* アイコンボタンの幅を指定 */
  z-index: 1; /* 入力フィールドの上に表示 */
}

#eyeIcon {
  transition: color 0.3s ease;
  color: #6c757d; /* デフォルトのアイコンの色 */
}
#eyeIcon.active {
  color: #007bff; /* アイコンがアクティブなときの色 */
}

.table {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  table-layout: auto;  /* 自動調整 */
  width: 100%;
  border-collapse: collapse;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}


.table th, .table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
  table-layout: auto;  /* 自動調整 */
}

.table th {
  background: #0015d6;
  color:#ffffff;
  font-weight: bold; /* 見出しを強調 */
}
