body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

header {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem;
  background-color: #dadde2;
}

#logo-container {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

#logo {
  border-radius: 8px;
  width: 255px;
}

.container {
  width: 100%;
  height: calc(100vh - 115px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.right-image {
  display: none;
  width: 100%;
  padding: 2.5rem 1rem 1rem 1rem;
  aspect-ratio: 1.075 / 1;
}

/* Base styles for right-image */
.right-image {
  font-family: -apple-system, BlinkMacSystemFont, "Neue Haas Unica", Roboto,
    sans-serif;
  display: none;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem 0.25rem;
}

footer a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  font-weight: 100;
  color: #5a3e8b;
  text-decoration: none;
}

/* Media query for desktops */
@media screen and (min-width: 1024px) {
  .container {
    height: calc(100vh - 120px);
    justify-content: space-between;
    align-items: center;
    overflow-y: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  typebot-standard {
    min-width: 50%;
    margin-right: 0;
  }

  .right-image {
    display: inline-block;
  }
}
