@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #001e43;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1, p {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label, input {
  display: block;
  margin: 0.5rem 0;
}

button {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: large;
  background-color: #fff;
  color: #001e43;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  cursor: pointer;
}
