:root {
  color: #10233f;
  background: #ffffff;
  font-family: Verdana, Geneva, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.continue-panel {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 34px;
}

.brand-logo {
  width: min(300px, 78vw);
  height: auto;
  display: block;
}

.continue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: min(100%, 320px);
  padding: 15px 24px;
  border-radius: 4px;
  background: #0878d8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(8, 120, 216, 0.22);
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.continue-button:hover {
  background: #0669be;
  box-shadow: 0 12px 26px rgba(8, 120, 216, 0.28);
  transform: translateY(-1px);
}

.continue-button:active {
  transform: translateY(0);
}

.continue-button:focus-visible {
  outline: 3px solid rgba(8, 120, 216, 0.32);
  outline-offset: 4px;
}

@media (max-width: 380px) {
  .continue-button {
    font-size: 13px;
    padding-inline: 16px;
  }
}
