#da-content-area {
  min-height: 600px;
}
h1 {
  color: #55be47;
  font-size: 24px;
  text-align: center;
}

body[layout='dandelionlogin'] {
  height: 100%;
  background-image: url(/arbre.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: grid;
  grid-template-rows: 104px auto 1fr;
  grid-template-columns: 103px 462px 1fr;
  grid-template-areas:
    '. . .'
    '. card .'
    '. . .';
}
body[layout='dandelionlogin'] #da-home-wrap {
  box-shadow: 0 6px 24px 0 rgb(0 0 0 / 80%);
  grid-area: card;
  background-color: #ffffff;
  padding: 64px;
  border-radius: 12px;
}

@media only screen and (max-width: 768px) {
  body[layout='dandelionlogin'] #da-home-wrap {
    grid-area: unset;
    box-sizing: border-box;
    width: calc(100vw - 64px);
    height: calc(100vh - 64px);
    margin: 32px;
  }
}
