* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #140043;
  background: #f8f7fa;
}
.login-layout {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro {
  position: relative;
  overflow: hidden;
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #140043;
  color: white;
}
.intro:after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -380px;
  bottom: -300px;
  border: 90px solid #ffffff08;
  border-radius: 50%;
  pointer-events: none;
}
.intro img {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  width: 243px;
  height: 106px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: 700;
  color: #c9bfdc;
}
.intro h1 {
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.13;
  letter-spacing: -1.8px;
  margin: 24px 0;
}
.intro h1 span {
  color: #ff8d2f;
}
.intro-copy > p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: #d5cce3;
}
.footnote {
  font-size: 13px;
  color: #b9accd;
}
.access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
}
.login-card {
  width: 100%;
  max-width: 440px;
  background: white;
  border: 1px solid #e8e3ee;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 70px #14004308;
}
.demo {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 6px;
  background: #fff0e3;
  color: #854008;
}
h2 {
  font-size: 29px;
  letter-spacing: -1px;
  margin: 27px 0 12px;
}
.description {
  color: #766982;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 28px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}
input {
  width: 100%;
  border: 1px solid #cfc6db;
  border-radius: 9px;
  font: inherit;
  padding: 14px;
  background: #fdfcfe;
  color: #140043;
}
input:focus {
  outline: 3px solid #ff8d2f50;
  border-color: #ad5714;
}
button {
  margin-top: 20px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: #ff8d2f;
  color: #140043;
  padding: 15px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
button:hover {
  background: #ffa052;
}
button:focus-visible {
  outline: 3px solid #140043;
  outline-offset: 3px;
}
.hint {
  font-size: 12px;
  line-height: 1.6;
  color: #766982;
  border-top: 1px solid #ece8f0;
  padding-top: 21px;
  margin: 27px 0 0;
}
.session-note {
  font-size: 12px;
  color: #766982;
  margin-top: 25px;
}
.error {
  font-size: 13px;
  line-height: 1.5;
  color: #a21d36;
  background: #fff0f3;
  border-radius: 6px;
  padding: 10px;
}
@media (max-width: 760px) {
  .login-layout {
    grid-template-columns: 1fr;
  }
  .intro {
    padding: 28px;
  }
  .intro img {
    width: 190px;
    height: auto;
    padding: 12px;
  }
  .intro-copy {
    margin-top: 25px;
  }
  .intro h1 {
    font-size: 36px;
    margin: 16px 0;
  }
  .intro-copy > p:last-child {
    font-size: 15px;
  }
  .footnote {
    display: none;
  }
  .access {
    padding: 28px 20px;
  }
  .login-card {
    padding: 28px;
  }
  .session-note {
    margin-bottom: 0;
  }
}
