/* Video Sol Taraf Stilleri */
.video-bg-wrapper {
    position: relative;
    height: 100vh;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}
    /* Video → en arkada */
    .video-bg-wrapper > video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
/* Üstüne karartma (okunabilirlik için) */
.video-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
    z-index: 2;
}
/* Alt mask layer → watermark tamamen gizler */
.video-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px; /* daha da yüksek */
    background: linear-gradient( to bottom, transparent 0%, rgba(0, 20, 15, 0.7) 15%, rgba(0, 25, 18, 0.9) 30%, rgba(0, 30, 20, 0.98) 50%, #001a12 70%, #001510 100% );
    z-index: 3;
}
/* Alternatif olarak daha yumuşak geçiş */
.video-mask-bottom-alternative {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient( to bottom, transparent 0%, rgba(1, 28, 20, 0.1) 20%, rgba(1, 28, 20, 0.4) 50%, rgba(1, 28, 20, 0.8) 80%, #011C14 100% );
    z-index: 3;
}
/* Ek olarak - sadece alt kısımdaki yazıları gizlemek için daha güçlü mask */
.video-mask-bottom-strong {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient( to bottom, rgba(1, 28, 20, 0) 0%, rgba(1, 28, 20, 0.5) 40%, rgba(1, 28, 20, 0.9) 80%, #011C14 100% );
    z-index: 3;
}
/* Metinler → en üstte */
.video-fore {
    position: relative;
    z-index: 4; /* her şeyin üstünde */
    color: #fff; /* beyaz yazı */
    text-align: center;
}
    /* Ana başlık için ek stil */
    .video-fore h1 {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    /* Alt metin için stil */
    .video-fore p {
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

/* PROFESYONEL SAĞ TARAF DİZAYNI */

/* Ana container için beyaz arka plan */
.col-lg-6 {
    background: #ffffff !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Form kutusu - görünür */
.col-md-7.mx-auto {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem auto;
    overflow: visible;
    position: relative;
    max-width: 600px;
    width: 95%;
    z-index: 999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

    /* Form kutusu içine subtle shimmer effect */
    .col-md-7.mx-auto::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
        animation: shimmer 3s infinite;
        pointer-events: none;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Form içeriği */
.vh-100.d-flex.flex-column {
    padding: 2.5rem !important;
    min-height: auto !important;
    position: relative;
    z-index: 1;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo container */
.mx-auto.mb-5.text-center {
    margin-bottom: 3rem !important;
}

    .mx-auto.mb-5.text-center img {
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }

        .mx-auto.mb-5.text-center img:hover {
            transform: scale(1.05);
        }

/* Başlık stilleri */
h2 {
    color: #000000 !important;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem !important;
    letter-spacing: -0.02em;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Alt başlık */
.text-center p {
    color: #333333 !important;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 2.5rem !important;
    line-height: 1.5;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Label stilleri */
.fxt-label {
    color: #000000 !important;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modern input stilleri */
.form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    color: #000000 !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    line-height: 1.4;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

    .form-control::placeholder {
        color: rgba(0, 0, 0, 0.5) !important;
        font-weight: 400;
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: rgba(0, 0, 0, 0.3) !important;
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08), 0 12px 30px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-2px);
        outline: none;
    }

/* Checkbox ve link alanı */
.form-check-label {
    color: #000000 !important;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 6px !important;
    width: 18px;
    height: 18px;
}

    .form-check-input:checked {
        background-color: #000000 !important;
        border-color: #000000 !important;
    }

/* Şifremi Unuttum link */
a[asp-action="ForgotPassword"] {
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    a[asp-action="ForgotPassword"]:hover {
        color: #333333 !important;
        text-decoration: underline;
    }

/* Modern button stili */
.btn-primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1)) !important;
        border-color: rgba(0, 0, 0, 0.3) !important;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

/* Footer text */
.text-gray-9 {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 0.85rem !important;
    font-weight: 400;
}

/* Alert stilleri */
.alert {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(15px);
    color: #ffffff !important;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

.alert-success {
    background: rgba(25, 135, 84, 0.15) !important;
    border-color: rgba(25, 135, 84, 0.3) !important;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    /* Sol video kolonu mobilde tamamen gizle */
    .col-lg-6:first-child {
        display: none !important;
    }

    /* Sağ form kolonu tam genişlik olsun */
    .col-lg-6:last-child {
        background: #ffffff !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Form kutusu mobilde tam görünür */
    .col-md-7.mx-auto {
        margin: 1rem auto !important;
        border-radius: 20px;
        max-width: 500px !important;
        width: 90% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Form içeriği görünür */
    .vh-100.d-flex.flex-column {
        padding: 2rem 1.5rem !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Tüm form elemanları görünür */
    h2, .text-center p, .fxt-label, .form-control, .btn-primary {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

