/* Slight tuning of the original light auth screen to sit alongside the new chrome */
.au-input,
.au-cell,
.au-btn,
.au-btn2,
.au-btn-icon,
.au-alert {
  border-radius: 10px;
}
.au-input:focus {
  box-shadow: 0 0 0 3px var(--soft);
}
.au-eye {
  border-radius: 8px;
}
.au-icon-box {
  border-radius: 12px;
}

.au-watermark {
  transform: none;
}
.au-dots {
  gap: 0;
  align-items: center;
}
.au-dots .au-dot,
.au-dots-sm .au-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 5px solid transparent;
  box-sizing: content-box;
  border-radius: 99px;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.22);
  transition:
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.25s;
}
.au-dots .au-dot:hover,
.au-dots-sm .au-dot:hover {
  background-color: rgba(255, 255, 255, 0.65);
}
.au-dots .au-dot.is-active,
.au-dots-sm .au-dot.is-active {
  width: 26px;
  background-color: var(--ac);
  box-shadow: none;
}
.au-dots-sm .au-dot {
  width: 6px;
  height: 6px;
}
.au-dots-sm .au-dot.is-active {
  width: 20px;
}
.au-panel .au-dot:focus,
.au-qfoot .au-dot:focus {
  outline: none;
}
.au-panel .au-dot:focus-visible,
.au-qfoot .au-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* mobile: quote block sits at the top, under the logo */
@media (max-width: 999px) {
  .au-mhead {
    display: none !important;
  }
  .au-qfoot,
  .au-body.au-tight .au-qfoot {
    order: 0;
    margin-top: 0;
    margin-bottom: 4px;
    border-radius: 0 0 18px 18px;
    padding: calc(16px + env(safe-area-inset-top)) 20px 14px;
    background: linear-gradient(150deg, #0c141d 0%, #152532 62%, #1a2f3f 100%);
  }
  .au-body.au-tight .au-qfoot {
    margin-top: 0;
    margin-bottom: 4px;
    padding: calc(16px + env(safe-area-inset-top)) 20px 14px;
  }
  .au-qfoot-env {
    display: inline-block;
    margin: 0 auto 10px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }
  .au-qfoot-logo {
    display: block;
    height: 24px;
    width: auto;
    margin: 0 auto 12px;
  }
  .au-qfoot-text {
    font-size: 15.5px;
    min-height: 46px;
  }
  .au-qfoot-tag {
    font-size: 9.5px;
    margin-top: 4px;
  }
  .au-form {
    order: 2;
  }
}
@media (min-width: 1000px) {
  .au-qfoot-logo,
  .au-qfoot-env {
    display: none;
  }
}

/* mobile: keep the 10px radius standard (auth.css bumps to 13px under 1000px) */
@media (max-width: 999px) {
  .au-input,
  .au-cell,
  .au-btn,
  .au-btn2,
  .au-btn-icon,
  .au-alert {
    border-radius: 10px;
  }
}
