/* Delete Account Page - SeeGo Brand Theme (Black, Red, Yellow) */

.delete-account-page {
    min-height: 100vh;
    background: var(--section-alt, #f8fafc);
}

.delete-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-black, #0a0a0a) 0%, var(--bg-dark, #1a1a1a) 100%);
    text-align: center;
    color: #fff;
}

.delete-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid var(--accent-red, #DC2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-hero-icon i {
    font-size: 2.5rem;
    color: var(--accent-red, #DC2626);
}

.delete-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.delete-hero p {
    color: #d1d5db;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.delete-form-section {
    padding: 3rem 0 5rem;
}

.delete-form-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    padding: 2.5rem;
}

.delete-form .form-group {
    margin-bottom: 1.5rem;
}

.delete-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.delete-form .required {
    color: var(--accent-red, #DC2626);
}

.delete-form .optional {
    font-weight: 400;
    color: var(--text-muted, #6b7280);
    font-size: 0.85rem;
}

.delete-form input,
.delete-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.delete-form input:focus,
.delete-form textarea:focus {
    outline: none;
    border-color: var(--accent-red, #DC2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.delete-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-red, #DC2626);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--accent-red-hover, #B91C1C);
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 2.25rem;
    color: #16a34a;
}

.success-message h2 {
    font-size: 1.5rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-muted, #4b5563);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--bg-black, #0a0a0a);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-back:hover {
    background: var(--bg-dark, #1a1a1a);
}

.policy-note {
    max-width: 520px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.25rem;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--accent-yellow, #FBBF24);
    border-radius: 8px;
    color: var(--text-muted, #4b5563);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policy-note i {
    margin-right: 0.5rem;
    color: var(--accent-yellow-dark, #F59E0B);
}

@media (max-width: 768px) {
    .delete-hero {
        padding: 5rem 0 2.5rem;
    }

    .delete-form-card {
        padding: 1.75rem;
    }
}
