        .alert {
    background-color: #fff3cd; /* Hafif sarı arka plan */
    border-left: 5px solid #dc3545; /* Yan bordür ile dikkat çekme */
    font-family: Arial, sans-serif; /* Temiz ve modern bir yazı tipi */
}

.alert h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.alert p {
    font-size: 1rem;
    line-height: 1.5;
}

.alert .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

        .background-div {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('https://e-kelebek.com/kullanici/inc/assets/images/bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); 
            overflow-y: auto; /* Dikey kaydırma */
            padding: 20px; /* İçerik için boşluk bırakma */
            box-sizing: border-box;
            z-index: -1;
        }

        /* Sayfa içeriği */
        .content {
            padding: 20px;
            color: white;
        }