/* ==========================================================================
   WBB Secured - Modern Mavi Login & Modal Yönetim Paneli Stilleri
   ========================================================================== */

:root {
    --primary-blue: #0284c7;
    --dark-blue: #0f172a;
    --slate-600: #475569;
    --slate-100: #f1f5f9;
}

.admin-login-body {
    background-color: #090d16;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.left-panel {
    background: linear-gradient(135deg, #0f172a 0%, #021526 100%);
    border-right: 1px solid rgba(2, 132, 199, 0.15);
}

.glow-sphere {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.login-card-input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 14px 12px 42px !important;
    font-size: 0.95rem;
    background-color: #fff;
    transition: all 0.3s ease !important;
}

.login-card-input:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1) !important;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 1.05rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-group-custom:focus-within .input-icon {
    color: var(--primary-blue);
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: var(--primary-blue);
}

.btn-login {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4) !important;
    transform: translateY(-1px);
}

.btn-login:hover .fa-arrow-right-long {
    transform: translateX(4px);
}

.btn-login:active {
    transform: translateY(1px);
}

.right-panel {
    background-color: #ffffff;
}

.transition-transform {
    transition: transform 0.2s ease;
}

/* Custom Bootstrap Checkbox Uyumlaması */
.form-check-input:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

/* Modernize Edilmiş Şifre Sıfırlama Modalı */
.modal-content-custom {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
}

.modal-header-custom {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px 24px !important;
}

.modal-footer-custom {
    border-top: 1px solid #f1f5f9 !important;
    padding: 16px 24px !important;
}

/* ==========================================================================
   WBB Secured - Canlı Logo ve Alt Bilgi Stilleri
   ========================================================================== */

.login-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Alt tarafa yaslanmayı garantiler */
}

/* Logonun pürüzsüz şekilde parlayıp sönmesini sağlayan animasyonlu sınıf */
.animated-login-logo {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 0px rgba(2, 132, 199, 0));
    animation: wbbPulseGlitch 3.5s infinite ease-in-out;
    user-select: none;
}

/* Teknoloji ruhuna uygun pürüzsüz nabız ve hafif neon ışıltı efekti */
@keyframes wbbPulseGlitch {
    0% {
        opacity: 0.85;
        filter: drop-shadow(0 0 2px rgba(2, 132, 199, 0.15));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(2, 132, 199, 0.5)) drop-shadow(0 0 25px rgba(236, 72, 153, 0.2));
        transform: scale(1.015);
    }
    100% {
        opacity: 0.85;
        filter: drop-shadow(0 0 2px rgba(2, 132, 199, 0.15));
    }
}

.login-copyright-text {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    color: #475569; /* Slate 400 - Gece mavisinde mükemmel okunurluk */
    margin: 0;
}