html, body {
  background-image: none !important;
}
h1 {
  margin-top: 40px;
  margin-bottom: 10px;
}
h1 img {
  width: 100%;
  max-width: 700px;
}

.password-reset-text {
  width: calc(100% - 20px);
  max-width: 566px;
  height: auto;
  color: #707070;
  font-size: 16px;
  margin: 40px 10px 0px 10px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 350px;
}
.login-reset-input {
  width: 100%;
  max-width: 350px;
}
.login-reset-input-title {
  display: flex;
  justify-content: left;
  width: 100%;
  max-width: 330px;
  font-size: 16px;
  font-weight: bold;
  margin: 40px 10px 4px 10px;
}
.login-reset-input-text {
  box-sizing: border-box;
  width: calc(100% - 20px);
  max-width: 330px;
  min-height: 38px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  padding: 0px 8px; 
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 100px;
}
::placeholder {
  font-size: 14px;
  font-family: "Meiryo";
  color: #CCCCCC;
}

.login-reset-button {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 330px;
  margin-bottom: 170px;
  gap: 20px;
}
.login-reset-button button {
  width: 100%;
  max-width: 134px;
  min-height: 44px;
  font-size: 16px;
}
.login-reset-button-cansel {
  background-color: #F9FBFC;
  color: #333333;
  border: 1px solid #CDD4D5;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.login-reset-button-cansel:hover {
  background-color: #F5F5F5;
}
.login-reset-button-submit {
  background-color: #F07B0C;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
}
.login-reset-button-submit:hover {
  background-color: #e58200;
}