/* Delete Account Page Styles */

/* Main Container */
.delete-account {
    padding: 2rem 0;
}

/* Content Card */
.delete-account .content-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.delete-account .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.delete-account .content-card h2 {
    color: #dc3545;
    margin-bottom: 1.8rem;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.delete-account .content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    border-radius: 3px;
}

/* Warning Box */
.delete-account .warning-box {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.delete-account .warning-box .warning-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.delete-account .warning-box h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.delete-account .warning-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.delete-account .warning-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.delete-account .warning-box li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.delete-account .warning-box strong {
    color: #dc3545;
    font-weight: 600;
}

/* Form */
.delete-account .delete-form {
    margin-top: 2rem;
}

.delete-account .form-group {
    margin-bottom: 1.5rem;
}

.delete-account .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.delete-account .form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    font-size: 1rem;
}

.delete-account .form-group input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* Form Actions */
.delete-account .form-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.delete-account .form-actions button,
.delete-account .form-actions a {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.delete-account .form-actions .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    cursor: pointer;
}

.delete-account .form-actions .btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Success Message */
.delete-account .success-message {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.delete-account .success-message .success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    display: block;
}

.delete-account .success-message h2 {
    color: #28a745;
    margin-bottom: 1.8rem;
    font-size: 2.4rem;
}

.delete-account .success-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

/* Error Message */
.delete-account .error-message {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .delete-account .form-actions {
        flex-direction: column;
    }
    
    .delete-account .content-card {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    
    .delete-account .content-card h2 {
        font-size: 1.8rem;
    }
    
    .delete-account .warning-box h3 {
        font-size: 1.3rem;
    }
} 