/* ================================
   CYHPER X — Hesap Silme Sayfası
   Premium Siyah Tema
================================ */

body.delete-account-body {
    background-color: #000;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Kart */
.delete-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 460px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    border: 1px solid #333;
    animation: fadeIn 0.4s ease;
}

.delete-container h2 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

.warning-text {
    text-align: center;
    font-size: 0.95rem;
    color: #bbbbbb;
    margin-bottom: 25px;
}

label {
    margin-top: 15px;
    font-weight: bold;
    display: block;
    color: #e0e0e0;
}

input {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    border: 2px solid #555;
    border-radius: 10px;
    margin-top: 8px;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
}

input:focus {
    background-color: #3a3a3a;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
    outline: none;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 0 25px rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

button.delete-btn {
    background-color: #e63946;
    color: #fff;
}

button.delete-btn:hover {
    background-color: #ff4d5a;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

/* Sonuç mesajları */
.success, .error {
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}

.success {
    background: #2a9d8f;
    color: #fff;
}

.error {
    background: #d62828;
    color: #fff;
}

/* Animasyon */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
