
.logo-container {
    height: 150px; /* Görselin yüksekliği */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak çerçeve */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
    background-color: #fff; /* Görselin arka planı */
    padding: 10px;
    transition: transform 0.3s ease;
}

.login-logo:hover {
    transform: scale(1.05); /* Üzerine gelince büyüme */
}

/* Başlık stili */
.login-header h4 {
    color: #fff; /* Siyah arka planda beyaz yazı */
    margin-top: 10px;
}

/* Form stili */
#LoginForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa; /* Hafif gri */
    border-radius: 0 0 10px 10px; /* Alt köşeleri yuvarlatır */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Giriş butonuna stil */
#LoginButton {
    transition: background-color 0.3s ease;
}

#LoginButton:hover {
    background-color: #0056b3;
}

.login-header {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-radius: 10px 10px 0 0;
    transition: background-color 0.3s ease;
}

.login-header:hover {
    background-color: #2c2c2c; /* Hover ile renk değişimi */
}

@media (max-width: 576px) {
    .login-logo {
        width: 120px;
        height: 120px;
    }
    .logo-container {
        height: 120px;
    }
}