/* 全体のスタイル */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

h1 {
  text-align: center;
  color: #333;
}

form {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* 入力フィールドのスタイル */
input[type="text"],
.password-wrapper input {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* パスワード入力フィールドのラッパースタイル */
.password-wrapper {
  position: relative;
}

/* 目のアイコンのスタイル */
#buttonEye,
#buttonEyeConfirm {
  position: absolute;
  top: 38%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 18px;
}

/* ボタンのスタイル */
button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

p {
  text-align: center;
  color: #333;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
  form {
    margin: 10%;
    padding: 5%;
  }

  input[type="text"],
  .password-wrapper input {
    font-size: 16px;
  }

  button {
    font-size: 18px;
  }
}
