.reset-page {
    position: relative;
    overflow: hidden;
}

    .reset-page .reset-glow {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: min(70vw, 760px);
        height: min(70vw, 760px);
        background: radial-gradient(circle, rgba(200, 24, 128, 0.14) 0%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
        z-index: 0;
    }

    .reset-page .reset-hero {
        padding: 160px 0 40px;
        position: relative;
        z-index: 1;
    }

    .reset-page .reset-card-wrap {
        position: relative;
        z-index: 1;
        padding: 20px 0 100px;
    }

    .reset-page .reset-card {
        max-width: 860px;
        margin: 0 auto;
    }

    .reset-page .reset-card-body {
        display: grid;
        gap: 24px;
    }

    .reset-page .reset-state-intro {
        max-width: 760px;
    }

    .reset-page .reset-form-shell {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        display: grid;
        gap: 22px;
    }

    .reset-page .reset-form {
        display: grid;
        gap: 14px;
        width: 100%;
        margin: 0;
    }

        .reset-page .reset-form .form-group {
            margin: 0;
            text-align: left;
        }

        .reset-page .reset-form .form-label {
            display: block;
            margin-bottom: 10px;
            color: rgba(255,255,255,0.76);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .reset-page .reset-form .form-input {
            width: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
            background: rgba(255,255,255,0.04);
            color: var(--color-text-primary);
            padding: 16px 18px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

            .reset-page .reset-form .form-input:focus {
                border-color: rgba(200, 24, 128, 0.65);
                box-shadow: 0 0 0 1px rgba(200, 24, 128, 0.4);
                background: rgba(255,255,255,0.05);
            }

            .reset-page .reset-form .form-input::placeholder {
                color: rgba(255,255,255,0.3);
            }

        .reset-page .reset-form .btn-form {
            width: auto;
            min-width: 220px;
            margin-top: 18px;
            margin-bottom: 14px;
            justify-self: center;
            padding: 16px 30px;
        }

    .reset-page .field-validation {
        display: block;
        margin-top: 8px;
        text-align: left;
    }

    .reset-page .reset-secondary {
        display: grid;
        gap: 12px;
        justify-items: center;
        padding-top: 4px;
    }

    .reset-page .reset-back-link {
        color: var(--color-text-secondary);
        font-size: 0.95rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

        .reset-page .reset-back-link:hover {
            color: var(--color-text-primary);
            border-color: rgba(255,255,255,0.42);
        }

.reset-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.reset-hero-subtitle {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reset-page .reset-hero {
        padding: 134px 0 28px;
    }

    .reset-page .reset-card-wrap {
        padding: 12px 0 72px;
    }

    .reset-page .reset-form .btn-form {
        width: 100%;
    }
}
