.loginStore {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}
  
.loginStore__title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #666;
}
  
  
.loginStore__field {
    margin-bottom: 15px;
}
  
.loginStore__label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
  
.loginStore__input {
    width: 100%; /* 幅を100%に設定 */
    padding: 8px; /* 内側の余白を追加 */
    font-size: 1rem; /* フォントサイズを適切に設定 */
    border: 1px solid #ccc; /* 枠線を統一 */
    border-radius: 4px; /* 角を丸める */
    box-sizing: border-box; /* フィールドが親要素からはみ出さないように */
}
  
.loginStore__button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #17a2b8;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px; /* ボタンを下にずらす */
}
  
.loginStore__button:hover {
    background-color: #0056b3;
}
  
.loginStore__field .error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: bold; /* 文字を太くする */
}

  /* 親コンテナのスタイル */
.loginStore__flashMessages-container {
  margin: 10px 0;
  padding: 0;
}

/* 各メッセージの基本スタイル */
.loginStore__flashMessages {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold; 
}

/* メッセージの種類ごとのスタイル */
.loginStore__flashMessages--error {
  color:red;
}

.loginStore__flashMessages--success {
  color: blue;  
}

.loginStore__flashMessages--info {
  color: black;
}

.loginStore__signupLink {
    text-align: center; /* 中央揃え */
    margin-top: 20px; /* ボタンとリンクの間に余白を追加 */
    font-size: 1rem; /* 読みやすいサイズ */
    color: #666; /* ベースの文字色 */
}

.loginStore__signupLink--link {
    color: #1e90ff; /* 明るい青色 (DodgeBlue) */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease; /* ホバー時のスムーズな変化 */
}

.loginStore__signupLink--link:hover {
    color: #00bfff; /* ホバー時にさらに明るい青色 */
}

.loginStore__passwordReset {
  text-align: center; /* 中央揃え */
  margin-top: 20px; /* ボタンとリンクの間に余白を追加 */
  font-size: 1rem; /* 読みやすいサイズ */
  color: #666; /* ベースの文字色 */
}

.loginStore__passwordReset--link {
  color: #1e90ff; /* 明るい青色 (DodgeBlue) */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease; /* ホバー時のスムーズな変化 */
}

.loginStore__passwordReset--link:hover {
  color: #00bfff; /* ホバー時にさらに明るい青色 */
}
  
  @media (max-width: 560px) {
    .loginStore {
      margin: 20px;
      padding: 10px;
    }
  
    .loginStore__title {
      font-size: 1.5rem;
    }
  
    .loginStore__input {
      font-size: 16px !important;
      padding: 6px;
      height: 40px !important;
      border-radius: 6px;
    }
  
    .loginStore__button {
      font-size: 1rem;
      padding: 8px;
      height: 40px;
      border-radius: 6px;
    }
  }