:root {
  --bg: #000;
  --ink: #f5f5f5;
  --muted: rgba(245,245,245,.68);
  --line: rgba(245,245,245,.24);
  --gold: rgb(241,216,182);
  --panel: rgba(255,255,255,.055);
  --panel2: rgba(255,255,255,.025);
  --disabled: rgba(245,245,245,.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,245,245,.08), transparent 34%),
    #000;
  color: var(--ink);
  font-family: "Klee One", cursive;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(760px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.top {
  border-bottom: 1px solid rgba(245,245,245,.14);
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.brand-ja {
  font-size: clamp(52px, 10vw, 112px);
  line-height: .9;
  font-weight: 600;
}

.brand-en,
.eyebrow {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .18em;
  color: rgba(246,246,246,.86);
}

.brand-en {
  font-size: 28px;
}

.login-card {
  width: min(440px, 100%);
  margin: 76px auto 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  padding: 34px;
}

.login-card h1 {
  margin: 8px 0 30px;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 22px;
}

label span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 14px;
}

input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245,245,245,.34);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 11px 2px;
}

input:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}

.button {
  width: 100%;
  color: var(--gold);
  border: 1px solid rgba(241,216,182,.55);
  background: transparent;
  padding: 12px 22px;
  font-family: "Klee One", cursive;
  font-size: 16px;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: rgba(241,216,182,.08);
  outline: 0;
}

.services {
  width: min(520px, 100%);
}

.service {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(245,245,245,.12);
  padding: 16px 0;
}

.service:first-of-type {
  border-top: 1px solid rgba(245,245,245,.12);
}

.service strong {
  color: var(--gold);
  font-weight: 400;
}

.service.enabled:hover,
.service.enabled:focus {
  background: rgba(241,216,182,.08);
  outline: 0;
}

.service.disabled {
  color: var(--disabled);
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 760px);
    padding-top: 28px;
  }

  .brand {
    display: block;
  }

  .brand-en {
    display: block;
    margin-top: 12px;
    font-size: 20px;
  }

  .login-card {
    margin-top: 48px;
    padding: 26px;
  }
}
