@charset "UTF-8";

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

body {
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (min-width: 880px) {
  .form-width {
    max-width: 880px;
    padding: 0 40px;
    margin: auto;
  }
}

.logo_div {
  background-color: #fcf44c;
}

.logo {
  max-width: 550px;
  width: 100%;
}

input[type="text"] {
  border-width: 1px;
}

.error-message {
  width: 300px;
  /* background-color: #e12350; */
  color: #D93025;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  display: none;
}
.error-message.-show {
  display: block;
}