/* ===================================================
   Öğrenci Bilgi Portalı
   Stil Dosyası
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Tahoma,Verdana,Arial,sans-serif;
}

body{
    background:#005792;
}

.orta{
    width:420px;
    margin:60px auto;
}

.kart{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 0 15px rgba(0,0,0,.15);
    padding:35px;
}

.logo{
    text-align:center;
    margin-bottom:15px;
}

.logo img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.logoBos{
    width:100px;
    height:100px;
    margin:auto;
    border:2px dashed #b0b0b0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#888;
    font-size:12px;
    text-align:center;
}

h1{
    text-align:center;
    font-size:24px;
    color:#005792;
    margin-bottom:5px;
}

.altBaslik{
    text-align:center;
    color:#666;
    margin-bottom:25px;
    font-size:14px;
}

label{
    display:block;
    margin-bottom:6px;
    font-weight:bold;
    color:#444;
}

input{
    width:100%;
    padding:12px;
    border:1px solid #cccccc;
    border-radius:6px;
    margin-bottom:18px;
    font-size:15px;
}

input:focus{
    border-color:#005792;
    outline:none;
}

button{
    width:100%;
    background:#005792;
    color:white;
    border:none;
    padding:13px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
}

button:hover{
    background:#003f6b;
}

.aciklama{
    margin-top:20px;
    text-align:center;
    color:#666;
    font-size:13px;
    line-height:20px;
}

.footer{
    margin-top:25px;
    text-align:center;
    color:#888;
    font-size:12px;
}

.hata{
    background:#ffdede;
    border:1px solid #ff8c8c;
    color:#b30000;
    padding:10px;
    margin-bottom:20px;
    border-radius:6px;
    text-align:center;
}
.islemButonlari {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

    .islemButonlari .btn {
        display: inline-block;
        padding: 5px 8px;
        font-size: 13px;
        margin: 0;
        white-space: nowrap;
    }

/* Telefon */
@media(max-width:500px){

.orta{
    width:95%;
    margin-top:20px;
}

.kart{
    padding:25px;
}

}
/* =========================================
   Öğrenci Portalı Mobil Görünüm
========================================= */

@media screen and (max-width:768px) {

    .orta {
        width: 96%;
        margin: 15px auto;
    }

    .kart {
        padding: 18px;
    }

    .baslik {
        font-size: 22px;
    }

    .kutu {
        padding: 15px;
    }

    .logo img {
        width: 80px;
        height: 80px;
    }

    .logoBos {
        width: 80px;
        height: 80px;
    }
}