/* ベースフォント */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* ログインフォームの外枠 */
.login-form {
  max-width: 400px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

/* タイトル */
h2 {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  color: #222;
}

/* ラベル */
.login-form label {
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
}

/* 入力フォーム */
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* パスワードの目アイコン */
.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 16px;
}

/* エラーメッセージ */
.login-error {
  color: red;
  text-align: center;
  margin-bottom: 15px;
}

/* ログインボタン */
.login-submit {
  width: 100%;
  padding: 12px;
  background-color: #1659a4;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-submit:hover {
  background-color: #0f4079;
}

/* パスワードをお忘れですか */
.forgot-password {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.forgot-password a {
  color: #1659a4;
  text-decoration: underline;
}

/* スマホ用CSS */
@media (max-width: 767px) {
  input{
    font-size: 16px;
  }

}
