.signin-page {
  background: #edf2f8;
}
.signin-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1120px;
  min-height: 680px;
  margin: 7vh auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 65px #102a4312;
}
.signin-story {
  background: var(--navy);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
.signin-story .eyebrow {
  color: #71c1ef;
}
.signin-story h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 25px;
}
.signin-story > div > p:last-child {
  color: #c4d4e3;
  line-height: 1.8;
}
.signin-story > p {
  color: #b0c7d9;
}
.signin-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 45px;
}
.signin-form {
  width: 100%;
  max-width: 360px;
}
.signin-form h2 {
  font-size: 1.75rem;
}
@media (max-width: 700px) {
  .signin-shell {
    margin: 0;
    min-height: 100vh;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
  }
  .signin-story {
    padding: 24px;
    gap: 15px;
  }
  .signin-story > div,
  .signin-story > p {
    display: none;
  }
  .signin-story .brand {
    margin: 0;
  }
  .signin-panel {
    padding: 32px 22px;
    align-items: flex-start;
  }
}
