body {
    /* --- MEVCUT DİĞER STİLLERİNİZ --- */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    position: relative;
    /* Pseudo-element konumlandırması için gerekli */
    z-index: 1;
    /* İçeriğin pseudo-element'in üzerinde kalmasını sağlar */
    background-color: #2c3440 !important;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Arka plana göndermek için */

    /* --- ARKA PLAN PATTERN AYARLARI --- */
    background-image: url('/assets/images/pattern.svg') !important;
    background-size: 145px !important;
    background-repeat: repeat !important;
    
    /* --- OPACITY AYARI --- */
    /* Değeri 0.0 (tamamen şeffaf) ile 1.0 (tamamen opak) arasında ayarlayabilirsiniz */
    opacity: 0.1 !important;
}

.theme-black .authentication {
    background: transparent !important;
    /* Arka planı şeffaf yapıyoruz */
}

.logo {
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
  
  
}

/* Swiper container'ını alanınıza göre konumlandırın ve boyutlandırın */
.swiper {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* Genişliği kendi tasarımınıza göre ayarlayın */
    height: 150px;
 
}
.swiper-wrapper {
  margin-bottom: 20px;
}

/* Her bir slaytın içindeki metinleri ortalamak ve renklendirmek için */
.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    /* Metin rengi */
}

.swiper-slide h2 {
    font-size: 24px;
    font-weight: 500;
}

.swiper-slide p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    /* Uzun metinlerin kenarlara yapışmasını engeller */
}

.swiper-pagination-bullet {
    width: 10px;
    /* Nokta boyutu */
    height: 10px;
    /* Nokta boyutu */
}