/* Available even if the application bundle or theme provider fails to load. */
.app-recovery {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 60vh;
  padding: 64px 24px;
  background: var(--editorial-bg, #000);
  color: var(--editorial-white, #fff);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.45;
}

.app-recovery--full {
  min-height: 100vh;
  min-height: 100dvh;
}

.app-recovery__content {
  width: 100%;
  max-width: 600px;
}

.app-recovery h1 {
  margin: 16px 0 24px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.app-recovery p {
  font-size: 18px;
  color: var(--editorial-copy, #9a9a9a);
}

.app-recovery .app-recovery__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--editorial-label, #737373);
}

.app-recovery__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.app-recovery__actions button,
.app-recovery__actions a {
  padding: 12px 16px;
  border: 1px solid var(--editorial-line, #232323);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.app-recovery__actions :is(button, a):hover {
  background: var(--editorial-focus, #1a1a1a);
}

.app-recovery__actions :is(button, a):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
