:root {
            --sr-dark: #111a2a;
            --sr-dark-medium: #19263a;
            --sr-dark-light: #26364e;

            --sr-green: #27c987;
            --sr-green-dark: #0c8458;

            --sr-text: #111827;
            --sr-muted: #667085;
            --sr-muted-light: #98a2b3;

            --sr-bg: #f2f5f8;
            --sr-card: #ffffff;
            --sr-border: #e3e8ef;

            --sr-success-bg: #ecfdf5;
            --sr-success-border: #b7efd7;
            --sr-success-text: #066b49;

            --sr-error-bg: #fff4f3;
            --sr-error-border: #f7cbc7;
            --sr-error-text: #9b2c26;

            --sr-shadow:
                0 28px 75px rgba(15, 23, 42, 0.15);
        }

        * {
            box-sizing: border-box;
        }

        html {
            min-height: 100%;
            background: var(--sr-bg);
        }

        body {
            min-height: 100vh;
            margin: 0;
            color: var(--sr-text);
            background: var(--sr-bg);
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        a,
        button,
        input {
            -webkit-tap-highlight-color: transparent;
        }

        button,
        input {
            font: inherit;
        }

        .sr-page {
            min-height: 100vh;
            display: grid;
            grid-template-columns:
                minmax(360px, 40%)
                minmax(520px, 60%);
        }

        /*
        |--------------------------------------------------------------------------
        | Painel institucional
        |--------------------------------------------------------------------------
        */

        .sr-brand {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            padding: 34px 42px;
            color: #fff;
            background:
                radial-gradient(
                    circle at 12% 8%,
                    rgba(255, 255, 255, 0.12),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 90% 90%,
                    rgba(113, 147, 194, 0.22),
                    transparent 36%
                ),
                linear-gradient(
                    148deg,
                    #0d1522 0%,
                    #142034 48%,
                    #253650 100%
                );
            isolation: isolate;
        }

        .sr-brand::before {
            position: absolute;
            top: -120px;
            right: -120px;
            width: 330px;
            height: 330px;
            content: "";
            border: 1px solid
                rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            box-shadow:
                0 0 0 44px
                    rgba(255, 255, 255, 0.025),
                0 0 0 88px
                    rgba(255, 255, 255, 0.015);
            pointer-events: none;
            z-index: -1;
        }

        .sr-brand::after {
            position: absolute;
            bottom: -170px;
            left: -150px;
            width: 410px;
            height: 410px;
            content: "";
            border-radius: 50%;
            background:
                rgba(255, 255, 255, 0.035);
            pointer-events: none;
            z-index: -1;
        }

        .sr-brand-inner {
            width: 100%;
            max-width: 550px;
            min-height: calc(100vh - 68px);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .sr-brand-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .sr-logo {
            display: inline-flex;
            align-items: center;
            min-height: 74px;
        }

        .sr-logo img {
            display: block;
            width: auto;
            max-width: 220px;
            max-height: 88px;
            object-fit: contain;
        }

        .sr-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 11px;
            color: rgba(255, 255, 255, 0.82);
            border:
                1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.06);
            font-size: 10px;
            font-weight: 850;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            backdrop-filter: blur(12px);
        }

        .sr-badge::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--sr-green);
            box-shadow:
                0 0 13px
                    rgba(39, 201, 135, 0.85);
        }

        .sr-brand-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px 0 34px;
        }

        .sr-eyebrow {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 18px;
            padding: 7px 12px;
            color: rgba(255, 255, 255, 0.76);
            border:
                1px solid rgba(255, 255, 255, 0.11);
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.055);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .sr-brand-title {
            max-width: 520px;
            margin: 0 0 18px;
            color: #fff;
            font-size:
                clamp(38px, 4vw, 60px);
            font-weight: 900;
            line-height: 1.03;
            letter-spacing: -0.05em;
        }

        .sr-brand-title span {
            display: block;
            color: rgba(255, 255, 255, 0.58);
        }

        .sr-brand-copy {
            max-width: 500px;
            margin: 0;
            color: rgba(255, 255, 255, 0.67);
            font-size: 16px;
            font-weight: 540;
            line-height: 1.68;
        }

        .sr-feature-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 11px;
            max-width: 505px;
            margin-top: 30px;
        }

        .sr-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 52px;
            padding: 10px 12px;
            color: rgba(255, 255, 255, 0.82);
            border:
                1px solid rgba(255, 255, 255, 0.085);
            border-radius: 14px;
            background:
                rgba(255, 255, 255, 0.045);
            font-size: 12px;
            font-weight: 720;
        }

        .sr-feature-icon {
            width: 27px;
            height: 27px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            color: #9af2cb;
            border-radius: 9px;
            background:
                rgba(39, 201, 135, 0.12);
        }

        .sr-brand-footer {
            color: rgba(255, 255, 255, 0.42);
            font-size: 11px;
            line-height: 1.5;
        }

        /*
        |--------------------------------------------------------------------------
        | Área principal
        |--------------------------------------------------------------------------
        */

        .sr-content {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding:
                max(30px, env(safe-area-inset-top))
                42px
                max(30px, env(safe-area-inset-bottom));
            background:
                radial-gradient(
                    circle at 100% 0,
                    rgba(38, 54, 78, 0.07),
                    transparent 32%
                ),
                var(--sr-bg);
        }

        .sr-card {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 600px;
            padding: 34px;
            border: 1px solid
                rgba(255, 255, 255, 0.88);
            border-radius: 27px;
            background:
                rgba(255, 255, 255, 0.98);
            box-shadow: var(--sr-shadow);
        }

        .sr-mobile-logo {
            display: none;
            margin-bottom: 24px;
            text-align: center;
        }

        .sr-mobile-logo img {
            width: auto;
            max-width: 180px;
            max-height: 72px;
            object-fit: contain;
        }

        .sr-kicker {
            margin: 0 0 9px;
            color: var(--sr-green-dark);
            font-size: 11px;
            font-weight: 850;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .sr-title {
            margin: 0;
            color: var(--sr-text);
            font-size:
                clamp(30px, 5vw, 42px);
            font-weight: 920;
            line-height: 1.07;
            letter-spacing: -0.042em;
        }

        .sr-description {
            max-width: 510px;
            margin: 13px 0 27px;
            color: var(--sr-muted);
            font-size: 14px;
            font-weight: 530;
            line-height: 1.65;
        }

        .sr-field {
            margin-top: 4px;
        }

        .sr-label {
            display: block;
            margin-bottom: 8px;
            color: #344054;
            font-size: 12px;
            font-weight: 760;
        }

        .sr-input {
            width: 100%;
            min-height: 52px;
            padding: 0 15px;
            color: var(--sr-text);
            border: 1px solid var(--sr-border);
            border-radius: 14px;
            outline: none;
            background: #fff;
            font-size: 15px;
            font-weight: 620;
            transition:
                border-color 150ms ease,
                box-shadow 150ms ease;
        }

        .sr-input:focus {
            border-color:
                rgba(39, 201, 135, 0.88);
            box-shadow:
                0 0 0 4px
                    rgba(39, 201, 135, 0.10);
        }

        .sr-input::placeholder {
            color: #b0b8c4;
        }

        .sr-helper {
            margin: 8px 0 0;
            color: var(--sr-muted-light);
            font-size: 11px;
            font-weight: 560;
            line-height: 1.45;
        }

        .sr-actions {
            margin-top: 25px;
        }

        .sr-button {
            min-height: 51px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 8px;
            padding: 0 21px;
            color: #fff;
            border: 0;
            border-radius: 14px;
            cursor: pointer;
            background:
                linear-gradient(
                    135deg,
                    #0f9462,
                    var(--sr-green)
                );
            box-shadow:
                0 11px 26px
                    rgba(39, 201, 135, 0.22);
            font-size: 13px;
            font-weight: 820;
            text-decoration: none;
            transition:
                transform 120ms ease,
                box-shadow 120ms ease,
                opacity 120ms ease;
        }

        .sr-button:hover {
            transform: translateY(-1px);
            box-shadow:
                0 14px 30px
                    rgba(39, 201, 135, 0.26);
        }

        .sr-button:disabled {
            cursor: wait;
            opacity: 0.65;
            transform: none;
        }

        .sr-back {
            display: inline-flex;
            margin-top: 18px;
            color: var(--sr-muted);
            font-size: 12px;
            font-weight: 690;
            text-decoration: none;
        }

        .sr-back:hover {
            color: var(--sr-text);
        }

        .sr-result-icon {
            width: 70px;
            height: 70px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 21px;
            border-radius: 22px;
            font-size: 30px;
            font-weight: 900;
        }

        .sr-card[data-state="sucesso"]
        .sr-result-icon {
            color: #fff;
            background:
                linear-gradient(
                    135deg,
                    var(--sr-green-dark),
                    var(--sr-green)
                );
            box-shadow:
                0 13px 28px
                    rgba(39, 201, 135, 0.24);
        }

        .sr-card[data-state="erro"]
        .sr-result-icon {
            color: var(--sr-error-text);
            border:
                1px solid var(--sr-error-border);
            background: var(--sr-error-bg);
        }

        .sr-result-email {
            display: inline-flex;
            margin-top: 3px;
            padding: 8px 11px;
            color: #475467;
            border: 1px solid var(--sr-border);
            border-radius: 999px;
            background: #f8fafc;
            font-size: 12px;
            font-weight: 760;
        }

        .sr-security {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-top: 22px;
            padding-top: 18px;
            color: var(--sr-muted-light);
            border-top: 1px solid #eef1f4;
            font-size: 10px;
            font-weight: 640;
            line-height: 1.5;
        }

        .sr-security-dot {
            width: 7px;
            height: 7px;
            flex: 0 0 auto;
            margin-top: 4px;
            border-radius: 50%;
            background: var(--sr-green);
            box-shadow:
                0 0 0 4px
                    rgba(39, 201, 135, 0.10);
        }

        .sr-honeypot {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0 0 0 0) !important;
            white-space: nowrap !important;
        }

        @media (max-width: 950px) {
            .sr-page {
                grid-template-columns: 1fr;
            }

            .sr-brand {
                display: none;
            }

            .sr-mobile-logo {
                display: block;
            }

            .sr-content {
                min-height: 100vh;
                padding: 20px;
            }
        }

        @media (max-width: 560px) {
            .sr-content {
                align-items: flex-start;
                padding:
                    max(14px, env(safe-area-inset-top))
                    12px
                    max(18px, env(safe-area-inset-bottom));
            }

            .sr-card {
                margin-top: 16px;
                padding: 28px 18px 24px;
                border-radius: 22px;
            }

            .sr-title {
                font-size: 31px;
            }

            .sr-mobile-logo img {
                max-width: 165px;
                max-height: 62px;
            }
        }
