/* Genel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Genel Body Stili */
#yonetim_giris_body {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Giriş Kutusu */
#yonetim_giris_kapsayici {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    text-align: center;
}

/* Form Elemanları */
#yonetim_giris_kapsayici input[type=text], 
#yonetim_giris_kapsayici input[type=password] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    height: 45px;
    outline: none;
    font-size: 16px;
}

/* Submit Butonu */
#yonetim_giris_kapsayici input[type=submit] {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    background: #6a11cb;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

#yonetim_giris_kapsayici input[type=submit]:hover {
    background-color: #2575fc;
}

/* Yönetici Girişi ve Geri Butonu */
#yonetici_giris_butonu, #geri_butonu {
    display: block;
    text-align: center;
    width: 100%;
    height: 45px;
    border: none;
    margin-top: 10px;
    border-radius: 8px;
    color: #fff;
    background-color: #4e54c8;
    text-decoration: none;
    line-height: 45px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#yonetici_giris_butonu:hover, #geri_butonu:hover {
    background-color: #6a11cb;
}

/* Telif Stili */
.telif {
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transition: background 0.5s ease-in;
    text-decoration: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: bold;
    border-radius: 3px 3px 0 0;
}

.telif:hover {
    background: gray;
    color: #ddd;
}
/* style.css */

#yonetim_giris_kapsayici {
    display: flex; /* Flexbox kullanımı */
    flex-direction: column; /* İçerikleri dikey sıralama */
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    height: 50vh; /* Yüksekliği tüm ekran yap */
}

#yonetici_giris_butonu, button[type="submit"] {
    background: linear-gradient(45deg, #007BFF, #00C6FF); /* Renk geçişli arkaplan */
    color: white; /* Metin rengi */
    padding: 15px 25px; /* İç boşluk - boyutları aynı yapar */
    border: none; /* Kenarlık yok */
    border-radius: 8px; /* Kenar yuvarlatma */
    text-align: center; /* Yatayda ortalama */
    display: flex; /* Flexbox kullanımı */
    justify-content: center; /* Yatayda ortalama */
    align-items: center; /* Dikeyde ortalama */
    text-decoration: none; /* Link alt çizgisi olmadan */
    font-size: 16px; /* Font boyutu */
    cursor: pointer; /* Mouse imleci */
    transition: background 0.3s ease, transform 0.3s ease; /* Hover efekti geçiş */
    margin: 10px; /* Butonlar arasında boşluk bırak */
}

#yonetici_giris_butonu:hover, button[type="submit"]:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc); /* Hover efekti için renk geçişi */
    transform: scale(1.05); /* Buton üzerine gelince hafif büyütme efekti */
}
