.reset-page {
    display: grid;
    grid-template-columns: minmax(430px, .86fr) minmax(560px, 1.14fr);
    min-height: 100vh;
    background: #f7f9fd;
}

.reset-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow: hidden;
    padding: 42px clamp(38px, 5vw, 78px);
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 85%,
            rgba(27, 66, 221, .67),
            transparent 32%
        ),
        linear-gradient(145deg, #06142d, #082448 58%, #071936);
}

.reset-brand::before,
.reset-brand::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.reset-brand::before {
    top: -180px;
    right: -160px;
    width: 520px;
    height: 520px;
}

.reset-brand::after {
    right: -210px;
    bottom: -220px;
    width: 610px;
    height: 610px;
}

.reset-logo,
.reset-brand-content,
.reset-brand-footer {
    position: relative;
    z-index: 2;
}

.reset-logo {
    display: inline-flex;
    width: 210px;
}

.reset-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.reset-brand-content {
    max-width: 570px;
}

.reset-kicker {
    margin-bottom: 20px;
    color: #31e7b2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.reset-brand h1 {
    margin: 0;
    font-size: clamp(43px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.06em;
}

.reset-brand p {
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.75;
}

.reset-points {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.reset-point {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
}

.reset-point-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #31e7b2;
    border-radius: 11px;
    background: rgba(49,231,178,.12);
}

.reset-point strong,
.reset-point span {
    display: block;
}

.reset-point strong {
    font-size: 13px;
}

.reset-point span {
    margin-top: 3px;
    color: rgba(255,255,255,.53);
    font-size: 11px;
}

.reset-brand-footer {
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.reset-access {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 42px 24px;
    background:
        radial-gradient(
            circle at 85% 4%,
            rgba(32, 176, 183, .12),
            transparent 28%
        ),
        #f8fafc;
}

.reset-container {
    width: min(100%, 560px);
}

.reset-heading {
    margin-bottom: 27px;
    text-align: center;
}

.reset-heading h2 {
    margin: 0;
    color: #071936;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1;
    letter-spacing: -.055em;
}

.reset-heading p {
    max-width: 500px;
    margin: 14px auto 0;
    color: #71809b;
    font-size: 14px;
    line-height: 1.65;
}

.reset-card {
    padding: 31px;
    border: 1px solid #dde5ef;
    border-radius: 25px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 28px 80px rgba(10,31,67,.12);
}

.reset-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 21px;
    color: #123bc8;
    border-radius: 18px;
    background: #eef3ff;
}

.reset-card h3 {
    margin: 0;
    color: #071936;
    font-size: 23px;
    letter-spacing: -.035em;
}

.reset-card-description {
    margin: 9px 0 24px;
    color: #71809b;
    font-size: 13px;
    line-height: 1.65;
}

.reset-form-group {
    margin-bottom: 17px;
}

.reset-label-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.reset-label-row label {
    color: #071936;
    font-size: 11px;
    font-weight: 900;
}

.reset-label-row span {
    color: #8995ac;
    font-size: 9px;
    font-weight: 800;
}

.reset-input-wrap {
    position: relative;
}

.reset-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    display: grid;
    place-items: center;
    width: 20px;
    color: #93a2bd;
    pointer-events: none;
    transform: translateY(-50%);
}

.reset-control {
    width: 100%;
    height: 52px;
    padding: 0 47px;
    color: #071936;
    outline: 0;
    border: 1px solid #dce4ef;
    border-radius: 13px;
    background: #fff;
    font-size: 13px;
    font-weight: 650;
}

.reset-control:focus {
    border-color: #315ce7;
    box-shadow: 0 0 0 4px rgba(49,92,231,.1);
}

.reset-password-toggle {
    position: absolute;
    top: 50%;
    right: 9px;
    min-width: 70px;
    height: 36px;
    color: #2447a4;
    border: 1px solid #e1e7f1;
    border-radius: 10px;
    background: #f7f9fe;
    font-size: 10px;
    font-weight: 900;
    transform: translateY(-50%);
}

.reset-password-control {
    padding-right: 96px;
}

.reset-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 19px;
    color: #fff;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(100deg, #173dd2, #0b2e83 62%, #07255f);
    box-shadow: 0 15px 30px rgba(22,60,184,.22);
    font-size: 14px;
    font-weight: 900;
}

.reset-submit:disabled {
    cursor: wait;
    opacity: .7;
}

.reset-back {
    margin-top: 19px;
    text-align: center;
}

.reset-back a {
    color: #2447a4;
    font-size: 11px;
    font-weight: 900;
}

.reset-alert {
    margin-bottom: 19px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}

.reset-alert-error {
    color: #932b38;
    border: 1px solid #ffd4da;
    background: #fff1f3;
}

.reset-alert-success {
    color: #08705b;
    border: 1px solid #ccecdf;
    background: #eaf8f3;
}

.reset-requirements {
    display: grid;
    gap: 8px;
    margin: 17px 0 5px;
    padding: 15px;
    border-radius: 13px;
    background: #f5f8fc;
}

.reset-requirement {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #71809b;
    font-size: 11px;
    font-weight: 700;
}

.reset-requirement::before {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 18px;
    height: 18px;
    content: "•";
    color: #8290a8;
    border-radius: 50%;
    background: #e6ebf4;
}

.reset-requirement.ok {
    color: #087c68;
}

.reset-requirement.ok::before {
    content: "✓";
    color: #fff;
    background: #18b88c;
}

.reset-invalid {
    text-align: center;
}

.reset-invalid .reset-icon {
    margin-right: auto;
    margin-left: auto;
    color: #b43846;
    background: #fff0f2;
}

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

    .reset-brand {
        display: none;
    }
}

@media (max-width: 620px) {
    .reset-access {
        align-items: start;
        padding: 26px 15px;
    }

    .reset-card {
        padding: 23px 18px;
        border-radius: 20px;
    }

    .reset-heading h2 {
        font-size: 36px;
    }
}

/* RESET DE SENHA — TELA SIMPLES E CENTRALIZADA */

.reset-simple-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(31, 186, 189, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 92%,
            rgba(23, 61, 210, 0.08),
            transparent 30%
        ),
        #f7f9fc;
}

.reset-simple-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px 20px;
}

.reset-simple-container {
    width: min(100%, 510px);
}

.reset-simple-logo {
    display: block;
    width: 190px;
    margin: 0 auto 34px;
}

.reset-simple-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.reset-simple-heading {
    margin-bottom: 25px;
    text-align: center;
}

.reset-simple-heading h1 {
    margin: 0;
    color: #071936;
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
}

.reset-simple-heading p {
    max-width: 430px;
    margin: 14px auto 0;
    color: #71809b;
    font-size: 14px;
    line-height: 1.65;
}

.reset-simple-card {
    padding: 30px;
    border: 1px solid #dde5ef;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(10, 31, 67, 0.12);
    backdrop-filter: blur(18px);
}

.reset-simple-card .reset-form-group {
    margin-bottom: 0;
}

.reset-simple-card .reset-control {
    height: 55px;
}

.reset-simple-card .reset-submit {
    min-height: 55px;
    margin-top: 18px;
}

.reset-simple-help {
    margin-top: 16px;
    color: #8995aa;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.55;
}

.reset-simple-card .reset-back {
    margin-top: 17px;
}

@media (max-width: 620px) {
    .reset-simple-page {
        align-items: start;
        padding: 25px 15px;
    }

    .reset-simple-logo {
        width: 165px;
        margin-bottom: 28px;
    }

    .reset-simple-card {
        padding: 23px 18px;
        border-radius: 20px;
    }

    .reset-simple-heading h1 {
        font-size: 37px;
    }
}

/* DEFINIÇÃO DE SENHA — CARD CENTRALIZADO */

.reset-simple-card .reset-requirements {
    margin-top: 18px;
}

.reset-simple-card .reset-password-control {
    height: 55px;
}

.reset-simple-card .reset-password-toggle {
    height: 37px;
}

.reset-simple-card .reset-form-group + .reset-form-group {
    margin-top: 16px;
}

.reset-simple-card .reset-invalid {
    text-align: center;
}

.reset-simple-card.reset-invalid .reset-icon {
    margin-right: auto;
    margin-left: auto;
}
