/* Body ve genel ayarlar */

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #0f2027, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
body {
    justify-content: flex-start !important;
    padding-top: 10vh !important;
}

/* Başlık */
.reset-main {
    text-align: center;
    margin-bottom: 20px;
}

.reset-title {
    font-size: 28px;
    color: #7fffd4;
    letter-spacing: 1px;
}

/* Form kutusu */
.reset-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(2,6,23,0.9);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0,255,180,0.2);
    width: 320px;
    gap: 20px;
}
.reset-form {
    width: 100% !important;
    max-width: 480px !important;
    min-height: 320px !important;
    padding: 50px 40px !important;
}
.reset-title {
    font-size: clamp(26px, 5vw, 40px) !important;
}
.reset-form input[type="password"] {
    padding: 16px;
    font-size: 18px;
}

.reset-form button {
    padding: 16px;
    font-size: 18px;
}

/* Input alanı */
.reset-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
}

.reset-form input[type="password"]::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Buton */
.reset-form button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
.reset-form-button-blue {
    background: #2563eb;
}
.reset-form-button-red {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #ee0000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
.reset-form-button-blue:hover {
    background: #1e40af;
    transform: translateY(-2px);
}
.reset-form-button-red:hover {
    background: #a00202;
    transform: translateY(-2px);
}
/* Mesaj */
.reset-msg {
    margin-top: 15px;
    font-weight: bold;
    color: #ff6b6b; /* hata rengi */
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 400px) {
    .reset-form {
        width: 90%;
        padding: 30px 20px;
    }

    .reset-title {
        font-size: 24px;
    }
}
.reset-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
}

.reset-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reset-right {
    width: 320px;
    margin-top: 24px;
    padding: 25px;
    border-radius: 12px;
    background: #1f1f1f;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.reset-right h3 {
    margin-bottom: 15px;
    text-align: center;
}

.reset-right ul {
    list-style: none;
    padding: 0;
}

.reset-right li {
    margin-bottom: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

/* Mobilde alt alta gelsin */
@media (max-width: 768px) {
    .reset-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
.admin-toggle {
    position: absolute;
    right: 40px;
    top: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: #2c2c2c;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.reset-right {
    width: 320px;
    padding: 25px;
    border-radius: 12px;
    background: #1f1f1f;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);

    /* ANİMASYON OLAYI */
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s ease;
}

/* AÇIK HAL */
.reset-right.active {
    transform: translateX(0);
    opacity: 1;
}
.reset-right {
    width: 320px !important;
    height: 320px !important;
}

.admin-list {
    overflow-y: auto !important;
    max-height: 240px !important;
    padding-right: 5px !important;
}
/* SCROLL BURADA */
.admin-list {
    overflow-y: auto;
    max-height: 240px;
    padding-right: 5px;
}

/* CUSTOM SCROLL */
.admin-list::-webkit-scrollbar {
    width: 6px;
}

.admin-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}
.admin-list {
    scroll-behavior: smooth;
}
