html,
body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  overflow: hidden;
}

:host {
  grid-column: span 2;
}

.grid {
  z-index: 999;
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #edf2fa;
  overflow-y: auto;
}

@media only screen and (max-width: 959px) {
  .grid {
    grid-template-columns: auto;
    padding: 1.25rem;
    grid-row-gap: 1.5rem;
  }
}

.grid > * {
  justify-self: center;
  height: 80vh;
}

@media only screen and (max-width: 959px) {
  .grid > * {
    height: auto;
  }
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34rem;
}

@media only screen and (max-width: 959px) {
  .text-container {
    grid-row-start: 2;
    justify-content: flex-start;
  }
}

.text-container .title {
  font-size: 2.25rem;
  font-weight: bold;
  color: black;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.text-container .message {
  line-height: 1.5rem;
  color: #2d5ec2;
  margin-top: 0;
}

.text-container .action-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.125rem;
}

.text-container .action-container.multiple-links {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

@media only screen and (max-width: 959px) {
  .text-container .action-container {
    flex-direction: column;
  }
}

.text-container .action-container a {
  font-size: 1rem;
  font-weight: 600;
  color: #2d5ec2;
}

.text-container .action-container a:hover {
  text-decoration: underline;
}

.illustration {
  width: 100%;
  max-width: 45rem;
}

@media only screen and (max-width: 959px) {
  .illustration {
    max-height: 30vh;
  }
}
