/* Account delete request page – matches BidBuraq/Privacy/Terms dark theme */

.account-delete-main {
    padding-top: 90px;
    padding-bottom: 3rem;
    min-height: 100vh;
}

.account-delete-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.account-delete-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border, rgba(0, 229, 255, 0.2));
}

.account-delete-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--text-primary, #eef2ff);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.account-delete-header h1 i {
    color: var(--accent, #00e5ff);
}

.account-delete-updated {
    font-size: 0.95rem;
    color: var(--muted, rgba(255, 255, 255, 0.6));
}

.account-delete-updated a {
    color: var(--accent, #00e5ff);
    text-decoration: none;
}

.account-delete-updated a:hover {
    text-decoration: underline;
}

.account-delete-section {
    margin-bottom: 2rem;
}

.account-delete-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--accent, #00e5ff);
    margin-bottom: 1.25rem;
}

.account-delete-intro {
    color: var(--text-secondary, rgba(255, 255, 255, 0.8));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Role choice cards */
.account-delete-choose .role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 229, 255, 0.06);
    border: 2px solid var(--card-border, rgba(0, 229, 255, 0.2));
    border-radius: 12px;
    color: var(--text-primary, #eef2ff);
    text-decoration: none;
    transition: all 0.25s ease;
}

.role-card i {
    font-size: 2rem;
    color: var(--accent, #00e5ff);
    margin-bottom: 0.75rem;
}

.role-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.role-card small {
    font-size: 0.85rem;
    color: var(--muted, rgba(255, 255, 255, 0.6));
    margin-top: 0.25rem;
}

.role-card:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: var(--accent, #00e5ff);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* Form */
.account-delete-form {
    padding: 1.5rem 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary, rgba(255, 255, 255, 0.9));
    margin-bottom: 0.4rem;
}

.form-group .required {
    color: #f87171;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-primary, #eef2ff);
    background: rgba(10, 15, 31, 0.8);
    border: 1px solid var(--card-border, rgba(0, 229, 255, 0.25));
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent, #00e5ff);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0a0f1f;
    background: var(--accent, #00e5ff);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #33ebff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent, #00e5ff);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.btn-cancel:hover {
    color: #33ebff;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-message.error {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #fca5a5;
}

.account-delete-back {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border, rgba(0, 229, 255, 0.2));
    font-size: 0.95rem;
}

.account-delete-back-link {
    color: var(--accent, #00e5ff);
    text-decoration: none;
}

.account-delete-back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .account-delete-main {
        padding-top: 80px;
        padding-bottom: 2rem;
    }

    .account-delete-container {
        padding: 0 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .role-cards {
        grid-template-columns: 1fr;
    }
}
