/* ==================== ACCOUNT DELETION PAGE ==================== */
/* Hero uses the shared .page-hero component. */

.deletion-main {
    padding: 0 40px 80px;
    position: relative;
    z-index: 10;
}

.deletion-box {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border: 4px solid var(--block-green);
    box-shadow:
        0 0 30px rgba(127, 194, 66, 0.2),
        0 8px 0 rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.deletion-form {
    display: block;
    width: 100%;
    height: 1100px;
    border: 0;
    background: #fff;
}

.deletion-fallback {
    max-width: 760px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 1rem;
    color: #ccc;
}

.deletion-fallback a {
    color: var(--block-green);
    font-weight: 700;
    transition: color 0.3s;
}

.deletion-fallback a:hover {
    color: var(--laser-orange);
}

/* Responsive */
@media (max-width: 968px) {
    .deletion-main {
        padding: 0 20px 60px;
    }
}

@media (max-width: 768px) {
    .deletion-box {
        padding: 0.75rem;
    }

    .deletion-form {
        height: 1200px;
    }
}
