body.auth-login-page {
    --auth-primary: var(--color-primary, #278CCF);
    --auth-text: var(--color-dark, #082029);
    --auth-muted: var(--color-dark-56, rgba(8, 32, 41, 0.56));
    --auth-shadow: 0 2rem 5rem rgba(6, 18, 28, 0.26);
    --auth-radius-xl: 2rem;
    background:
        radial-gradient(circle at 15% 15%, rgba(39, 140, 207, 0.42), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 80% 82%, rgba(39, 140, 207, 0.12), transparent 22%),
        linear-gradient(135deg, var(--color-primary-96) 0%, var(--color-primary-80) 45%, var(--color-primary-96) 100%),
        url("/images/background-login/segurocred.webp") no-repeat center/cover;
    color: var(--auth-text);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.auth-login-page,
body.auth-login-page * {
    box-sizing: border-box;
}

body.auth-login-page a {
    color: inherit;
    text-decoration: none;
}

body.auth-login-page a:hover {
    color: var(--auth-primary);
}

body.auth-login-page::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.08), transparent 18%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

body.auth-login-page .auth-background {
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

body.auth-login-page .auth-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    inset: 0;
    opacity: 0.35;
    position: absolute;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
}

body.auth-login-page .auth-orb {
    border-radius: 999px;
    filter: blur(20px);
    position: absolute;
}

body.auth-login-page .auth-orb.orb-a {
    background: radial-gradient(circle, rgba(39, 140, 207, 0.58), rgba(39, 140, 207, 0.08) 68%, transparent 72%);
    height: 26rem;
    left: -8rem;
    top: -8rem;
    width: 26rem;
}

body.auth-login-page .auth-orb.orb-b {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 64%, transparent 72%);
    bottom: -4rem;
    height: 20rem;
    right: -5rem;
    width: 20rem;
}

body.auth-login-page .auth-shell {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

body.auth-login-page .auth-card {
    background:var(--color-white);
    border-radius: var(--auth-radius-xl);
    box-shadow: var(--auth-shadow);
    padding: clamp(1.35rem, 4vw, 2.35rem);
    width: min(100%, 31.5rem);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

body.auth-login-page .auth-brand-block {
    display: grid;
    gap: 2.5rem;
    justify-items: center;
    text-align: center;

    margin-bottom: 2rem;
}

body.auth-login-page .auth-brand-mark {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

body.auth-login-page .auth-brand-mark img {
    display: block;
    width: auto;
    height: auto;
    max-width: 10rem;
}

body.auth-login-page .auth-brand-mark i {
    color: #fff;
    font-size: 1.55rem;
}

body.auth-login-page .auth-brand-copy {
    display: grid;
    gap: 0.5rem;
}

body.auth-login-page .auth-brand-copy h1 {
    color: var(--auth-text);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

body.auth-login-page .auth-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.1rem;
}

body.auth-login-page .auth-field {
    display: grid;
    gap: 0.45rem;
}

body.auth-login-page .auth-field > span {
    color: var(--auth-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

body.auth-login-page .auth-input-shell {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-dark-16);
    border-radius: 1rem;
    display: flex;
    gap: 0.85rem;
    padding: 0 1rem;
}

body.auth-login-page .auth-input-shell i {
    color: rgba(8, 32, 41, 0.34);
    flex-shrink: 0;
    font-size: 0.95rem;
}

body.auth-login-page .auth-input-shell input {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--auth-text);
    flex: 1;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    min-width: 0;
    outline: none;
    padding: 1rem 0;
}

body.auth-login-page .auth-input-shell input::placeholder {
    color: rgba(8, 32, 41, 0.34);
    font-weight: 500;
}

body.auth-login-page .auth-input-shell:focus-within {
    border-color: rgba(39, 140, 207, 0.38);
}

body.auth-login-page .auth-links {
    align-items: center;
    color: var(--auth-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
    margin-top: .5rem;
}

body.auth-login-page .auth-links a {
    color: var(--auth-primary);
}

body.auth-login-page .auth-submit {
    align-items: center;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 1rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.01em;
    padding: 0.95rem 1.25rem;
    width: 100%;
}

body.auth-login-page .auth-submit:focus-visible {
    outline: 0;
}

body.auth-login-page .auth-support {
    border: 1px solid var(--color-dark-08);
    border-radius: 1rem;
    color: var(--auth-text);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    justify-content: flex-start;
    margin: 1rem 0 0;
    min-width: 0;
    padding: 0.9rem 1rem;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.auth-login-page .auth-support:focus-visible {
    outline: 0;
}

body.auth-login-page .auth-support-icon {
    align-items: center;
    background: var(--color-primary);
    border-radius: 0.85rem;
    color: #fff;
    display: inline-flex;
    flex: 0 0 2.5rem;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

body.auth-login-page .auth-support-icon i {
    font-size: 1.05rem;
    line-height: 1;
}

body.auth-login-page .auth-support-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

body.auth-login-page .auth-support-title {
    color: var(--auth-text);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
}

body.auth-login-page .auth-support-hours {
    color: var(--auth-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-wrap: balance;
}

body.auth-login-page .auth-support-hours a {
    color: var(--color-primary);
    font-weight: 600;
}

body.auth-login-page .auth-terms {
    color: var(--auth-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 1.1rem 0 0;
    text-align: center;
}

body.auth-login-page .auth-terms a {
    color: var(--auth-primary);
}

.auth-brand-copy p {
    color: var(--auth-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

.auth-brand-copy p a {
    color: var(--color-primary);
    font-weight: 600;
}

body.auth-login-page .auth-alert {
    border-radius: 0.9rem;
    display: none;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    padding: 0.85rem 1rem;
}

body.auth-login-page .auth-alert strong {
    display: inline-block;
    font-size: inherit;
}

body.auth-login-page .auth-alert--error {
    background: rgba(247, 39, 39, 0.08);
    border: 1px solid rgba(247, 39, 39, 0.22);
    color: #b91c1c;
}

body.auth-login-page .auth-alert--info {
    background: rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.22);
    color: #1269ad;
}

body.auth-login-page .auth-password-toggle {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: rgba(8, 32, 41, 0.42);
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font: inherit;
    justify-content: center;
    padding: 0;
}

body.auth-login-page .auth-password-toggle:focus-visible {
    border-radius: 999px;
    outline: 2px solid rgba(39, 140, 207, 0.28);
    outline-offset: 0.25rem;
}

body.auth-login-page .auth-submit[disabled] {
    cursor: not-allowed;
    opacity: 0.68;
}

body.auth-login-page .auth-input-shell input:-webkit-autofill,
body.auth-login-page .auth-input-shell input:-webkit-autofill:hover,
body.auth-login-page .auth-input-shell input:-webkit-autofill:focus,
body.auth-login-page .auth-input-shell input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
    -webkit-text-fill-color: var(--auth-text) !important;
    caret-color: var(--auth-text);
    transition: background-color 9999s ease-out 0s;
}

body.auth-login-page #captcha-turnstile {
    display: flex;
    justify-content: center;
    min-height: 4.1rem;
}