/* HostDrift CDP v1.14.2 — public standalone registration */
body.cdp-public .nav-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--hd-orange);
    color: #fff !important;
    font-size: 10.5px;
    font-weight: 680;
    transition: background .16s ease, transform .16s ease;
}
body.cdp-public .nav-register:hover { background: var(--hd-orange-strong); transform: translateY(-1px); }

.auth-form input[type="text"] {
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    border: 1px solid var(--hd-line-strong);
    border-radius: 13px;
    background: #fff;
    color: var(--hd-text);
    font-size: 13px;
    outline: 0;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.auth-form input[type="text"]:focus { border-color: var(--hd-orange); box-shadow: 0 0 0 4px rgba(218,133,60,.11); }
.auth-form input[type="text"]::placeholder { color: #aaaab0; }
.register-card { width: min(100%, 560px); }
.register-form { gap: 13px; }
.field-help { margin-top: -2px; color: #8b8b90; font-size: 9px; font-weight: 500; line-height: 1.55; }
.auth-switch { margin: 17px 2px 0; color: #7c7975; font-size: 10.5px; line-height: 1.6; text-align: center; }
.auth-switch a { color: var(--hd-orange-strong) !important; font-weight: 700; }
.auth-switch a:hover { text-decoration: underline; text-underline-offset: 2px; }
.auth-switch-prominent { padding: 11px 12px; border: 1px solid var(--hd-line); border-radius: 12px; background: var(--hd-orange-soft); color: #655e57; }
.auth-alert ul { margin: 7px 0 0 17px; padding: 0; }
.auth-alert li + li { margin-top: 3px; }

@media (max-width: 720px) {
    body.cdp-public .nav-register { min-height: 32px; padding-inline: 10px; font-size: 10px; }
}
@media (max-width: 460px) {
    .public-actions { gap: 4px; }
    body.cdp-public .nav-register { display: none; }
}

/* v1.14.3 — anti-spam + Cloudflare Turnstile */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.turnstile-wrap {
    display: grid;
    gap: 7px;
    margin-top: 2px;
    padding: 12px;
    border: 1px solid var(--hd-line);
    border-radius: 13px;
    background: #faf9f7;
}
.turnstile-wrap .cf-turnstile { min-height: 65px; }
.auth-submit:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* v1.14.4 — forgot/reset password */
.auth-form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.auth-form-meta .remember-row { margin: 0; }
.forgot-password-link {
    flex: 0 0 auto;
    color: var(--hd-orange-strong) !important;
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
}
.forgot-password-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.recovery-card { width: min(100%, 540px); }
.recovery-form { gap: 14px; }
.recovery-note {
    margin: 13px 2px 0;
    color: #8b8b90;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.65;
    text-align: center;
}
.auth-alert.success { border-color: rgba(61,132,88,.22); background: rgba(61,132,88,.08); color: #376947; }

@media (max-width: 520px) {
    .auth-form-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
}
