.split-screen {
  height: 100vh;
}

.split-screen-main {
  display: flex;
  flex-direction: column;

  height: 100vh;
}

.split-screen-header {
  padding: 35px 60px;
  border-bottom: 1px solid var(--blue-100);
}

.split-screen-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.split-screen-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  flex-grow: 1;

  overflow-y: scroll;
}

.split-screen-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  width: 100%;
  max-width: 500px;

  padding: 10vh 20px 2vh 20px;
  padding-bottom: 200px;

  margin: auto;

  font-size: 14px;
}

.split-screen-content a {
  color: var(--primary);
}

.split-screen-content p {
  width: 100%;
  font-size: 16px;
}

.split-screen-cgu,
.split-screen-cgu a {
  color: var(--grey-600);
  font-size: 14px;
}

.split-screen-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.split-screen-form label {
  margin-bottom: 6px;
}

.input {
  background: var(--blue-50);
}

.split-screen-title {
  width: 100%;
  text-align: left;
  font-size: 32px;
  color: var(--black);
}

.split-screen-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--blue-50);
}

.split-screen-aside-title {
  width: 60%;
  text-align: center;
  color: var(--primary);
}

.split-screen-cover {
  width: 80%;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
}
