/* Delete Account Page Specific Styles */
.delete-account-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 130px);
    padding: 40px 20px;
}

.delete-account-card {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.5s ease;
    border: 1px solid rgba(20, 51, 69, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
    font-size: 20px;
}

.step-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step.completed ~ .step-line {
    background: var(--success-color);
}

.warning-icon {
    color: var(--danger-color);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.warning-icon svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.page-title {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.warning-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.info-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.warning-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid var(--warning-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 36px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.1);
}

.warning-box h3 {
    color: var(--warning-color);
    margin-bottom: 16px;
    font-size: 20px;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-primary);
}

.warning-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-size: 18px;
}

.delete-form {
    text-align: left;
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.otp-input {
    font-family: 'Courier New', monospace;
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
    cursor: pointer;
}

.form-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 36px;
}

.form-actions .btn {
    min-width: 160px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modal-warning {
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 12px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .delete-account-wrapper {
        min-height: calc(100vh - 100px);
        padding: 20px 10px;
    }
    
    .delete-account-card {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .warning-text {
        font-size: 16px;
    }
    
    .warning-box {
        padding: 20px;
    }
    
    .warning-box h3 {
        font-size: 18px;
    }
    
    .steps-indicator {
        margin-bottom: 32px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        margin-top: 28px;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .delete-account-card {
        padding: 24px 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .warning-box {
        padding: 16px;
    }
    
    .steps-indicator {
        gap: 4px;
    }
    
    .step-label {
        display: none;
    }
}
