/* Enhanced Animated Background Objects */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 1;
    animation: none;
}

/* Animasyonları hemen başlat */
.floating-shape {
    animation: float3D 6s ease-in-out infinite !important;
    opacity: 1 !important;
}

.particle {
    animation: particleFloat 8s ease-in-out infinite !important;
    opacity: 1 !important;
}

.animated-line {
    animation: lineMove 4s ease-in-out infinite !important;
    opacity: 1 !important;
}

.pulse-ring {
    animation: pulseRing 3s ease-in-out infinite !important;
    opacity: 1 !important;
}

/* Sağ taraf animasyonları */
.auth-wrapper.auth-cover .d-none.d-lg-flex {
    animation: gradientShift 8s ease infinite !important;
    opacity: 1 !important;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex::before {
    animation: lightPulse 6s ease-in-out infinite !important;
    opacity: 1 !important;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex::after {
    animation: patternFloat 10s linear infinite !important;
    opacity: 1 !important;
}

/* Animasyonlu elementlerin hemen görünür olması */
.animated-background {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease-in-out;
}

.animated-background * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease-in-out;
}

.animated-background,
.floating-shape,
.particles,
.animated-lines,
.pulse-ring,
.ripple {
    display: none !important;
    animation: none !important;
    transition: none !important;
}
/* Sayfa yüklendiğinde animasyonların hemen başlaması */
body {
    opacity: 1 !important;
}

.auth-wrapper {
    opacity: 1 !important;
    animation: none !important;
}

.card {
    opacity: 1 !important;
    animation: none !important;
}

/* Full Açılış Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Açılış animasyonu sınıfları */
.animated-background.show {
    opacity: 1 !important;
    animation: fadeInScale 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1.show {
    opacity: 1 !important;
    animation: slideInRight 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

.d-none.d-lg-flex.col-lg-8.align-items-center.p-5.show {
    opacity: 1 !important;
    animation: slideInLeft 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

/* Logo animasyonu */
.brand-logo.show {
    animation: bounceIn 1s ease-out 1s forwards;
}

/* Form elementleri animasyonu */
.form-control.show {
    animation: slideInFromTop 0.8s ease-out forwards;
}

/* Button animasyonu */
.btn-primary.show {
    animation: zoomIn 0.8s ease-out forwards;
}

/* Card animasyonu */
.card.show {
    animation: flipInX 1.2s ease-out forwards;
}

/* Sosyal medya butonları */
.btn-facebook.show, .btn-twitter.show, .btn-instagram.show, .btn-linkedin.show, .btn-youtube.show {
    animation: bounceIn 0.6s ease-out forwards;
}

/* Store butonları */
.store-btn.show {
    animation: zoomIn 0.8s ease-out forwards;
}

/* Form container animasyonu */
.auth-login-form.show {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Divider animasyonu */
.divider.my-2.show {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Auth footer animasyonu */
.auth-footer-btn.show {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Başlık animasyonu */
.card-title.fw-bold.mb-1.text-center.show {
    animation: slideInFromTop 0.8s ease-out forwards;
}

/* Underline animasyonu */
.title-underline.show {
    animation: slideInFromTop 0.8s ease-out 0.2s forwards;
}

/* Sağ taraftaki arka plan için özel stil */
.auth-wrapper.auth-cover .auth-inner {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-wrapper.auth-cover .d-none.d-lg-flex {
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
        linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.9;
    animation: lightPulse 6s ease-in-out infinite;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.4;
    animation: patternFloat 10s linear infinite;
}

/* Sağ taraf için ek dekoratif elementler */
.auth-wrapper.auth-cover .d-none.d-lg-flex {
    position: relative;
}

/* Sağ taraf için floating dekoratif elementler */
.auth-wrapper.auth-cover .d-none.d-lg-flex::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 6s ease-in-out infinite;
    z-index: 2;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 8s ease-in-out infinite reverse;
    z-index: 2;
}

/* Ek dekoratif çizgiler */
.auth-wrapper.auth-cover .d-none.d-lg-flex .decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .decorative-lines::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lineSweep 4s ease-in-out infinite;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .decorative-lines::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: lineSweep 6s ease-in-out infinite reverse;
}

/* Floating element animasyonu */
@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

/* Line sweep animasyonu */
@keyframes lineSweep {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Sağ taraf için ek ışık efektleri */
.auth-wrapper.auth-cover .d-none.d-lg-flex .light-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .light-effects::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightPulse 4s ease-in-out infinite;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .light-effects::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 25%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: lightPulse 5s ease-in-out infinite reverse;
}

/* Sağ taraf için responsive düzenlemeler */
@media (max-width: 991.98px) {
    .auth-wrapper.auth-cover .d-none.d-lg-flex {
        display: none !important;
    }
}

/* Sağ taraf için ek gradient efektleri */
.auth-wrapper.auth-cover .d-none.d-lg-flex {
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
        linear-gradient(45deg, #4facfe 0%, #00f2fe 100%),
        linear-gradient(90deg, #a8edea 0%, #fed6e3 100%);
    background-size: 200% 200%, 150% 150%, 300% 300%;
    animation: 
        gradientShift 8s ease infinite,
        gradientShift 12s ease infinite reverse;
}

/* Sağ taraf için ek parçacık efektleri */
.auth-wrapper.auth-cover .d-none.d-lg-flex .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .particles::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.auth-wrapper.auth-cover .d-none.d-lg-flex .particles::after {
    content: '';
    position: absolute;
    top: 85%;
    right: 15%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite reverse;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(-5px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.7;
    }
}

/* Enhanced Floating Geometric Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.15;
    animation: float3D 8s ease-in-out infinite;
    filter: blur(0.5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3);
    border-radius: 50%;
    animation-delay: 0s;
    transform: rotate(0deg);
}

.floating-shape:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d, #96ceb4);
    border-radius: 20px;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.floating-shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #a8edea, #fed6e3, #ffecd2);
    border-radius: 50%;
    animation-delay: 4s;
    transform: rotate(90deg);
}

.floating-shape:nth-child(4) {
    bottom: 30%;
    right: 10%;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f, #ff9a9e);
    border-radius: 15px;
    animation-delay: 1s;
    transform: rotate(135deg);
}

.floating-shape:nth-child(5) {
    top: 50%;
    left: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #f093fb);
    border-radius: 50%;
    animation-delay: 3s;
    transform: rotate(180deg);
}

.floating-shape:nth-child(6) {
    top: 60%;
    right: 5%;
    width: 110px;
    height: 110px;
    background: linear-gradient(45deg, #a8edea, #fed6e3, #4facfe);
    border-radius: 20px;
    animation-delay: 5s;
    transform: rotate(225deg);
}

/* Enhanced Particle System */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 12s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; }

/* Enhanced Animated Lines */
.animated-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: lineMove 15s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.animated-line:nth-child(1) {
    top: 20%;
    width: 250px;
    animation-delay: 0s;
}

.animated-line:nth-child(2) {
    top: 40%;
    width: 200px;
    animation-delay: 3s;
}

.animated-line:nth-child(3) {
    top: 60%;
    width: 300px;
    animation-delay: 6s;
}

.animated-line:nth-child(4) {
    top: 80%;
    width: 220px;
    animation-delay: 9s;
}

/* Enhanced Pulse Rings */
.pulse-ring {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseRing 6s ease-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.pulse-ring:nth-child(1) {
    top: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    bottom: 25%;
    right: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.pulse-ring:nth-child(3) {
    top: 70%;
    left: 10%;
    width: 140px;
    height: 140px;
    animation-delay: 4s;
}

/* Enhanced Keyframe Animations */
@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-25px) rotate(270deg) scale(1.05);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1) rotate(360deg);
        opacity: 0;
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    80% {
        opacity: 1;
        transform: translateX(50%) scaleX(1);
    }
    100% {
        transform: translateX(100vw) scaleX(0);
        opacity: 0;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Enhanced Login Form Styling */
.auth-wrapper {
    position: relative;
    z-index: 10;
}

/* Sağ taraf login form alanı için uyumlu arka plan */
.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%),
        linear-gradient(45deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.02) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(102, 126, 234, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

/* Sağ taraf için uyumlu dekoratif elementler */
.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: subtlePulse 8s ease-in-out infinite;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 8s ease infinite;
    opacity: 0.2;
}

/* Sağ taraf için uyumlu floating elementler */
.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .decorative-elements::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 12%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 10s ease-in-out infinite;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .decorative-elements::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 8s ease-in-out infinite reverse;
}

/* Uyumlu animasyonlar */
@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Sağ taraf için uyumlu ışık efektleri */
.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .light-rays::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(102, 126, 234, 0.015) 90deg, 
            transparent 180deg, 
            rgba(118, 75, 162, 0.015) 270deg, 
            transparent 360deg);
    animation: rotateGradient 20s linear infinite;
    opacity: 0.6;
}

/* Sağ taraf için uyumlu responsive düzenlemeler */
@media (max-width: 991.98px) {
    .d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 {
        background: 
            linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.97) 100%);
        border-radius: 20px;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.06),
            0 8px 16px rgba(102, 126, 234, 0.04);
    }
    
    .d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1::before,
    .d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1::after {
        display: none;
    }
}

/* Sağ taraf için uyumlu parçacık efektleri */
.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .particles::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 18%;
    width: 2px;
    height: 2px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.d-flex.col-lg-4.align-items-center.auth-bg.px-2.p-lg-1 .particles::after {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 15%;
    width: 1.5px;
    height: 1.5px;
    background: rgba(118, 75, 162, 0.25);
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite reverse;
}

.auth-inner {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.auth-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff, #5f27cd);
    background-size: 400% 400%;
    border-radius: 27px;
    z-index: -1;
    animation: gradientShift 4s ease infinite;
    opacity: 0.4;
}

/* Hover effects removed */

.card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.card-body {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Form Input Styling */
.form-control {
    border: 2px solid rgba(115, 103, 240, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.form-control:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 0.3rem rgba(115, 103, 240, 0.25);
    background: rgba(255, 255, 255, 1);
}

/* Enhanced Button Styling - Simplified */
.btn-primary {
    background: linear-gradient(45deg, #7367f0, #9c8cff, #b8a9ff);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(115, 103, 240, 0.3);
}

/* Enhanced Logo Animation */
.brand-logo {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
}

.custom-logo {
    height: 164px !important;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Enhanced Social Media Buttons - Simplified */
.btn-facebook, .btn-twitter, .btn-instagram, .btn-linkedin, .btn-youtube {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-background {
        display: none;
    }
    
    .auth-inner {
        margin: 1rem;
        backdrop-filter: blur(10px);
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .mouse-trail {
        display: none;
    }
}

/* Enhanced Interactive Effects */
.form-control:focus {
    /* Input glow animation removed */
}

/* Enhanced Button Ripple Effect */
.btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transform: scale(0);
    animation: ripple 0.8s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(5);
        opacity: 0;
    }
}

/* Enhanced Card Hover Effects - Removed */
.auth-inner {
    /* Hover effects removed */
}

/* Enhanced Success Animation - Simplified */
.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Enhanced Error Animation - Simplified */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Enhanced Form Shake Animation - Removed */
form.shake {
    /* Form shake animation removed */
}

/* Enhanced Mouse Trail Effect */
.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Enhanced Background Effects - Simplified */
.animated-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.4) 0%, transparent 50%);
    opacity: 0.6;
}

/* Animasyonlar */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes patternFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading animasyonu kaldırıldı - animasyonlar hemen başlıyor */

/* Preserve existing styles */
.btn-youtube {
    background-color: #ff0000;
    color: #ffffff;
}

.btneditdijital {
    border-color: #004e9b !important;
    background-color: #004e9b !important;
    color: #fff !important;
}

    .btneditdijital :focus, .btneditdijital :active, .btneditdijital .active {
        color: #fff;
        background-color: #004e9b !important;
    }

    /* Hover effects removed */

    .btneditdijital:focus, .btneditdijital:active, .btneditdijital.active {
        color: #fff;
        background-color: #004e9b !important;
    }

    /* Hover effects removed */

/* Enhanced Glow Effects - Removed for inputs */
.form-control.glow {
    /* Input glow effects removed */
}

.btn-primary.pulse-glow {
    /* Button glow animation removed */
}

/* Enhanced 3D Transform Effects - Removed */
.auth-inner {
    /* 3D effects removed */
}

/* Enhanced Particle Effects */
.particle {
    filter: blur(0.5px);
    animation: particleFloat 12s linear infinite, particleGlow 2s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Enhanced Floating Shapes */
.floating-shape {
    filter: blur(0.5px);
    animation: float3D 8s ease-in-out infinite, shapeGlow 3s ease-in-out infinite alternate;
}

@keyframes shapeGlow {
    from {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    to {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    }
}

/* Enhanced Background Gradient Animation */
.animated-background {
    background-size: 400% 400%;
    animation: backgroundGradient 15s ease infinite, backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Enhanced Card Glow - Removed */
.auth-inner::after {
    /* Card glow effect removed */
}

/* Başlık ve maskot konteyneri */
.referanslar-baslik-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Maskot stili */
.referanslar-maskot {
    position: relative;
    width: 120px;
    height: 120px;
    margin-right: 15px;
    transform: translateY(0px);
    animation: float 3s ease-in-out infinite;
}

/* Maskot yüzdürme animasyonu */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mevcut başlık konteyneri */
.referanslar-baslik {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    z-index: 2;
}

.referanslar-baslik h2 {
    color: #5e5873;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0;
    animation: titleFadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.referanslar-baslik h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #7367f0, #ce9ffc);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

/* Hover effects removed */

.referanslar-baslik p {
    color: #6e6b7b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: titleFadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
    margin-top: 5px;
}

/* Hover effects removed */

/* Referans containerı için hover efekti */
.referanslar-container {
    width: 100%;
    margin: 1.5rem auto;
    padding: 2rem 0;
    position: relative;
    overflow: hidden !important;
    background: transparent;
    z-index: 5;
    text-align: center;
}

/* Hover effects removed */

/* DersSis benzeri referans öğeleri - hover efektleri iyileştirildi */
.dersis-referans-item {
    text-align: center;
    padding: 0 15px;
    margin: 0 5px;
    transform-origin: center center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Hover effects removed */

.dersis-referans-logo {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transform: translateY(0);
}

/* Hover effects removed */

/* Slick carousel stilleri (DersSis benzeri) */
.slick-track {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
}

.slick-slide {
    height: inherit !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    float: none !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .referanslar-container {
        padding: 2.5rem 0;
    }
    
    .dersis-referans-logo {
        height: 120px;
    }
}

@media (max-width: 767.98px) {
    .referanslar-container {
        display: none;
    }
}

/* Popup stilleri */
.referans-popup {
    position: fixed;
    width: 280px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    z-index: 1500;
}

.referans-popup:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #7367f0;
}

.referans-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Popup header - artık sadece kapat düğmesi içeriyor */
.popup-header {
    padding: 10px 15px 5px;
    text-align: right;
    background-color: transparent;
    color: #333;
    position: relative;
    display: block;
}

/* Kapat butonu */
.popup-close {
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.6;
    color: #333;
    position: absolute;
    top: 5px;
    right: 10px;
}

/* Hover effects removed */

/* Logo container */
.popup-logo-container {
    text-align: center;
    margin-bottom: 15px;
    padding-top: 5px;
}

/* Logo stili */
.popup-logo {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

/* Firma adı stili */
.popup-company-name {
    text-align: center;
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: #5e5873;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* Popup body */
.popup-body {
    padding: 0 20px 20px;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    height: 120px;
    border: 1px solid #eee;
}

/* Tüm login sayfası için z-index düzeltmesi */
.auth-wrapper {
    position: relative;
    z-index: 1;
}

.card {
    position: relative;
    z-index: 2;
}

/* Başlık animasyonu */
@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects removed */

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .referanslar-baslik-container {
        flex-direction: column;
    }
    
    .referanslar-maskot {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* "Sıra Sizde" vurgulaması için özel stil */
.highlight-text {
    color: #ff6b6b; /* Dikkat çekici canlı kırmızı renk */
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    transform: rotate(-2deg); /* Hafif eğim */
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

/* "Sıra Sizde" arkasındaki dekoratif çizgi */
.highlight-text:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 107, 107, 0.3); /* Kırmızının yarı saydam hali */
    z-index: -1;
    transform: skewX(-15deg);
}

/* Yanıp sönme/titreşim animasyonu */
@keyframes pulse {
    0% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(-2deg) scale(1.05);
        color: #ff8787;
    }
    100% {
        transform: rotate(-2deg) scale(1);
    }
}

/* Hover effects removed */

/* Sallanma animasyonu */
@keyframes shake {
    0% { transform: rotate(-2deg); }
    25% { transform: translate(1px, 1px) rotate(-1deg); }
    50% { transform: translate(-1px, -1px) rotate(-3deg); }
    75% { transform: translate(2px, -1px) rotate(-1deg); }
    100% { transform: rotate(-2deg); }
}

/* Yeni Popup Stilleri - Konum değişiklikleri */
.referans-popup-overlay {
    position: absolute; /* fixed yerine absolute kullanılacak */
    background-color: transparent; /* Arka plan transparan olacak */
    display: block; /* flex yerine block kullanılacak */
    width: auto; /* genişlik otomatik olacak */
    height: auto; /* yükseklik otomatik olacak */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

.referans-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.referans-popup-content {
    position: relative;
    width: 300px; /* Sabit genişlik */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Popup ok eklentisi */
.referans-popup-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.popup-address {
    margin-bottom: 15px;
    color: #6e6b7b;
    font-size: 14px;
    line-height: 1.6;
}

.popup-address i {
    color: #7367f0;
    font-size: 16px;
    margin-right: 8px;
}

.popup-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    height: 180px;
}

/* Mobil görünüm düzenlemeleri */
@media (max-width: 767.98px) {
    .referans-popup-content {
        width: 95%;
        max-width: 350px;
    }
    
    .popup-map {
        height: 150px;
    }
}

/* Carousel ortalama stilleri */
.referanslar-carousel {
    text-align: center;
}

/* img-fluid zoom efekti - iyileştirilmiş versiyon */
.img-fluid {
    transform-origin: center;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    filter: brightness(1) contrast(1);
    position: relative;
    backface-visibility: hidden; /* Daha keskin zoom */
}

/* Hover effects removed */

/* Overlay zoom efekti */
.img-container {
    position: relative;
    overflow: hidden;
}

.img-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(115, 103, 240, 0.2); /* Hafif renkli overlay */
    opacity: 0;
    pointer-events: none;
}

/* Hover effects removed */

/* Hover effects removed */

/* Görseller içeren konteynerlara overflow önlemi */
.img-container, 
.card-img, 
.card-img-top,
.card-body {
    overflow: hidden;
}

/* Glass Efekti ve Gradyan Arka Plan - KALDIRILDI */
body.blank-page {
    min-height: 100vh;
}

/* Auth wrapper stilini düzenle - KALDIRILDI */
.auth-wrapper.auth-basic {
    /* Arka plan kaldırıldı */
}

/* Card'a ultra-modern görünüm - KALDIRILDI */
.auth-wrapper .card {
    border-radius: 10px !important;
    overflow: hidden;
}

/* Sağ taraf için modern arka plan - KALDIRILDI */
.auth-wrapper .auth-inner {
    /* Modern arka plan kaldırıldı */
}

/* Modern şık arka plan deseni - KALDIRILDI */
.auth-wrapper .auth-inner:before {
    display: none;
}

/* İçerik bölgelerinde şık tonlama - KALDIRILDI */
.auth-wrapper .card-body {
    /* Özel arka plan kaldırıldı */
    border-radius: 0;
}

/* Ultra-modern form tasarımı - KALDIRILDI */
.auth-wrapper form {
    /* Glass efektleri kaldırıldı */
    padding: 15px;
}

/* Dikey scrollbar'ı engelleme */
html, body {
    overflow-y: hidden !important;
    max-height: 100vh;
}

body.vertical-layout.vertical-menu-modern.blank-page {
    overflow: hidden !important;
}

.content-wrapper {
    overflow: hidden !important;
}

.auth-wrapper {
    overflow: hidden !important;
}

/* Responsive ayarı */
@media (max-width: 767.98px) {
    html, body, .content-wrapper, .auth-wrapper {
        overflow-y: auto !important; /* Mobilde scrolling gerekebilir */
        max-height: none;
    }
}

/* Typing animation removed */

/* Typing animation effects removed */

/* Title underline effect */
.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    margin: 0 auto 20px auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: underlineSweep 3s ease-in-out infinite;
}

@keyframes underlineSweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Enhanced title styling */
.card-title.fw-bold.mb-1.text-center {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2.5rem auto 1.5rem auto; /* üstten boşluk ve ortalama */
    padding: 0;
}

.brand-logo img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    max-height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
