.logo-container {
    position: fixed;
    top: 30px; /* Üstten mesafe */
    left: 30px; /* Soldan mesafe */
    z-index: 999; /* Diğer içeriklerin üzerine çıkar */
}

.logo-img {
    width: 200px; /* Logo boyutu */
    height: auto;
}

/* Ekran 768px'den küçükse (tablet ve mobil) */
@media (max-width: 768px) {
    .logo-container {
        top: 20px; /* Üstten biraz daha yukarı */
        left: 20px; /* Soldan biraz daha yakın */
    }

    .logo-img {
        width: 180px; /* Orta boyutta logo */
    }

    h1 {
        font-size: 36px; /* Mobilde başlık boyutunu küçült */
    }

    h3 {
        font-size: 18px;
    }
}

/* Ekran 480px'den küçükse (telefon) */
@media (max-width: 480px) {
    .logo-container {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-img {
        width: 120px;
    }
}

h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

h3 {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}
/* Tablet ve daha küçük cihazlar */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    h3 {
        font-size: 20px;
    }
}

/* Telefonlar */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h3 {
        font-size: 18px;
    }
}

#sauport_login_signin_submit:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
}

#sauport_login_forgot:hover {
    color: #3e3e3e !important;
}

.btn i {
    vertical-align: middle;
}

.footer {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: white;
    position: fixed;
    bottom: 0px;
    padding: 5px 0;
    left: 0;
    font-size: 11px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1); /* Hafif koyu arka plan */
}

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }
.custom-alert {
    background-color: rgba(0, 0, 0, 0.4); /* Daha koyu ve opak arka plan */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Hafif kontrast kenarlık */
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

.icon {
    font-size: 18px;
    margin-right: 8px;
    color: white;
}

.alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px !important;
}

.alert-title {
    font-weight: bold;
    font-size: 14px;
}

.alert-list {
    list-style-type: disc;
    padding-left: 25px;
    margin: 0;
    margin-top: 12px;
}

    .alert-list li {
        margin-bottom: 6px;
        text-align: left;
        font-size: 12px;
        text-align: justify;
    }