body {
  font-size:100%;
}

input, select {
/*  height: 1.6em;
  font-size:1em;
  max-width: 90%;
  size: 90%; */
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  font-size: calc( 0.8rem + 0.5vw);
}
select {
  padding:3px;
}

/*select {
  height: 1.6em;
  font-size:1em;
  max-width: 90%;
}   */
#responsive_img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
p {
  display: block;
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.35em;
  margin-bottom: 0.5em;
  padding: 0.1em;
}
#p_buttons {
  align-items: center;
  text-align:center;
  text-shadow:none !important;
}
.button_save {
  margin-left: 0 !important;
}

.wrapper {
  display: grid;
 }
/* grid definition*/
.container {
  box-shadow: 0 0 10px;
  border: 1px solid #00bcd4;
  margin: 2em 2em;
  background-image: url("../backgroundverk3.png");
  display: grid;
  max-width: 450px;
  height: 85%;
  grid-template-areas:
  "logo"
  "form"
  "password"
  "information";
/*  grid-template-rows: fit-content(40%);  */
  grid-template-rows: 0.2fr 1fr 0.4fr 1fr;
}
.container > div {
  border: 1px solid #00bcd4;
}

#new_password {
  text-align: center;
  display: block;
  padding: 1rem;
  font-size: calc( 1.3rem + 0.5vw);
  color: #00aaff;
}
.logo {
  grid-area: logo;
}
/*.logo>img {
  object-fit: cover;
}  */
.form {
  grid-area: form;
  text-align: center;
}
.password {
  grid-area: password;
  text-align: center;
}
.information {
  grid-area: information;
  padding: 0.3em;
  font-size: calc( 0.75rem + 0.5vw) !important;
}
div.information a {
  font-size: calc( 0.9rem + 0.5vw) !important;
  padding-left: 15%;
}

.button_save {
  font-size: calc( 0.6rem + 0.7vw);
}
.button_back {
  font-size: calc( 0.6rem + 0.7vw) !important;
}
  @media (min-width: 320px) and (max-width: 480px) {
  .container {
    margin: 5px;
    height: 85%;
  }
  .information>img {
    max-width:15%;
    height: auto;
  }
}