
*{
  box-sizing: border-box;
margin: 0;
}

body{
  height: 100dvh;
  background: linear-gradient(135deg, rgb(89, 0, 255), violet, rgb(89, 0, 255));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Roboto", sans-serif;
  font-optical-sizing:initial;
  font-weight:500;
  font-style: normal;
  font-variation-settings:
    "wdth" 200;
}
header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 5rem;
  background-color: rgba(151, 57, 112, 0.3);
  
}
p, label, h4{
  margin: 0.4rem;
}
nav{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-template-columns: minmax(275px, 63em) ;
  height: 2.5rem;
  border: 1px solid #ccc;
  background-color: rgba(255,255, 255, 0.4);
  border-radius: 1.5rem;
  margin: 1rem;
}
#infobox{
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1rem;
  height: auto;
  max-width: 60em;
  border: 1px solid #ccc;
  margin: 10px auto;
  border-radius: 8px;
  background-color: rgba(255,255, 255, 0.2);
}
#infobuttons{
  display: inline-flex;
  justify-content: center;
}
main{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px,1fr));
  max-width: 65em;
  margin: 0 auto;
  margin-top: 2rem;
  gap: 1rem;
}
form {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 1rem auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: rgba(255,255, 255, 0.2);
  width: 95%;
  height: 60dvh;
}
label{
  align-self: inherit;
  width: 60%;
}
input {
  width: 60%;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  width:fit-content;
  height: 2rem;
  margin: 0.4rem;
  background: linear-gradient(rgb(241, 237, 213), gold, rgb(241, 237, 213));
  border: 2px solid yellow;
  border-radius: 5px;
}
#forgotten, #weiter{
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 5px;
  background: rgba(255,255, 255, 0.4);
  border-radius: 5px;
}

