/* 　ログイン周りのCSS */
/* 共通の基本スタイル */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('../image/background.png');
  background-size: cover;
  background-position: center;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 400px;
  text-align: center;
}

/* フォームのインプットグループのスタイリング */
.input-group {
  margin-bottom: 10px;
}

.input-group label {
  text-align: left; /* ラベルのテキストを左詰めに設定 */
  display: block; /* ラベルをブロックレベル要素として表示（これによりwidthが100%になります） */
  width: 100%; /* コンテナの幅に合わせてラベルの幅を設定 */
}

input[type=email], input[type=password], input[type=text], input[type=date], select {
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
  box-sizing: border-box;
}

/* ボタンのスタイリング */
button, input[type=button] {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover, input[type=button]:hover {
  background-color: #0056b3;
}

/* パスワード再設定リンク */
.forgot-password {
  display: block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* フッターのスタイリング */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  text-align: center;
  padding: 10px 0;
}

.sns-links {
  list-style: none;
  padding: 0;
}

.sns-links li {
  display: inline;
  margin-right: 10px;
}

.sns-links a {
  color: #333;
  text-decoration: none;
}
