body {
  padding: 2rem;
}

.mockup {
  padding: 2rem;
  padding-bottom: 0.5rem;
}
/**
 * Desktop
 */
@media (min-width: 768px) {
  .mockup {
    margin: 2rem auto;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    border-radius: .75rem;
  }
  .hidden-desktop {
    display: none !important;
  }
}
/**
 * Mobile
 */
@media (max-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  .mockup {
    height: 100%;
    width: 100%;
  }
  dialog.mockup {

    height: max-content;
    width: 100%;
    max-width: 100%;

    border-width: 0.2rem 0 0 0;
    margin-bottom: 0px;
    border-radius: .75rem .75rem 0 0;
  }
  .hidden-mobile {
    display: none !important;
  }
}

form input,
form button {
  margin-right: .5rem;
}

dialog::backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.4);
}
