* {
  box-sizing: border-box;
}

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

body {
  font-family: PNSans, Verdana, sans-serif;
  background: #ffffff;
  color: #0d234b;
}

/* HEADER */

.pn-page-header {
  height: 64px;
  background: linear-gradient(to right, #0d234b 0 50%, #ffffff 50% 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pn-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 16px;
}

.pn-logo img {
  display: block;
  width: 120px;
  height: 23px;
  object-fit: contain;
}

/* SIDLAYOUT */

.page {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* VÄNSTER */

.info-section {
  min-height: calc(100vh - 64px);
  background: #0d234b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}

.info-content {
  width: 100%;
  max-width: 590px;
}

.eyebrow {
  font-family: PNSans, Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

h1,
.demo-info h2 {
  font-family: PNSans, Verdana, sans-serif;
  font-weight: 700;
  color: #ffffff;
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 35px;
}

.owner {
  margin: 10px 0 38px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.demo-info {
  max-width: 560px;
}

.demo-info h2 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 29px;
}

.demo-info p {
  margin: 0 0 18px;
  font-family: PNSans, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
}

.demo-info .contact {
  margin-top: 30px;
  margin-bottom: 0;
}

.demo-info .contact strong {
  font-weight: 700;
}

/* HÖGER */

.search-section {
  min-height: calc(100vh - 64px);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}

.search-content {
  width: 100%;
  max-width: 550px;
}

.search-kicker {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #0d234b;
}

.search-title {
  margin: 0 0 14px;
  font-family: PNSans, Verdana, sans-serif;
  font-size: 32px;
  line-height: 35px;
  font-weight: 700;
  color: #0d234b;
}

.search-description {
  margin: 0 0 32px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  color: #35445f;
}

.search-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #0d234b;
}

.search-form .password-label {
  margin-top: 18px;
}

.search-form input:not([type="hidden"]) {
  width: 100%;
  height: 58px;
  border: 1px solid #8d97a8;
  border-radius: 6px;
  padding: 0 16px;
  font-family: PNSans, Verdana, sans-serif;
  font-size: 16px;
  color: #0d234b;
  background: #ffffff;
}

.search-form input:not([type="hidden"]):focus {
  outline: 3px solid rgba(13, 35, 75, 0.12);
  border-color: #0d234b;
}

.search-form button {
  min-width: 150px;
  height: 54px;
  margin-top: 16px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  background: #ffd200;
  color: #0d234b;
  font-family: PNSans, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.search-form button:hover {
  filter: brightness(0.97);
}

.example {
  margin-top: 15px;
  font-size: 13px;
  color: #687386;
}

.login-alert {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.login-alert--success {
  background: #ecfdf3;
  color: #067647;
}

.login-alert--error {
  background: #fef3f2;
  color: #b42318;
}

@media (max-width: 900px) {
  .pn-page-header {
    background: #0d234b;
  }

  .page {
    grid-template-columns: 1fr;
  }

  .info-section,
  .search-section {
    min-height: auto;
    padding: 48px 28px;
  }

  .search-section {
    min-height: 500px;
  }
}

@media (max-width: 520px) {
  .info-section,
  .search-section {
    padding: 40px 20px;
  }

  .search-form button {
    width: 100%;
  }
}
