/* Superior LV public front door — black / white only. Login. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

body {
  color: #000;
  background: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input {
  font: inherit;
  color: inherit;
}

a {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

::selection {
  background: #000;
  color: #fff;
}

h1,
h2,
p,
ul {
  margin: 0;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: #fff;
}

.skip:visited {
  color: #fff;
}

.skip:focus {
  top: 0.75rem;
}

#device {
  width: min(390px, 100%);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

.login {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.4rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
}

.mark {
  width: 196px;
  height: 196px;
  margin: 0.5rem auto 1.75rem;
  border-radius: 50%;
}

.kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.block {
  margin-top: 1.5rem;
}

.block .kicker {
  text-align: left;
  margin-bottom: 0.7rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #000;
  padding: 0.95rem 1rem 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.tech-btn strong {
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.tech-btn span {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.tech-btn:hover,
.tech-btn:focus-visible,
.tech-btn[aria-pressed="true"] {
  background: #000;
  color: #fff;
  outline: none;
}

.or {
  margin: 1.75rem 0 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: #fff;
  padding: 0.55rem 0;
  outline: none;
}

.field input::placeholder {
  color: #000;
  opacity: 1;
}

.field input:focus {
  box-shadow: 0 1px 0 #000;
}

.btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 1rem 1.1rem 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: #fff;
  color: #000;
}

.err {
  margin-top: 0.85rem;
  font-size: 0.875rem;
}

.err[hidden] {
  display: none;
}

.foot {
  margin-top: auto;
  padding-top: 2.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.foot a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (min-width: 720px) {
  body {
    padding: 2.5rem 0;
  }

  #device {
    min-height: calc(100vh - 5rem);
    box-shadow: 0 0 0 1px #fff;
  }
}
