/* Genel Stil Ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Kartın Görünümü */
.card-body {
    max-width: 450px;
    margin: 10px auto 0 auto;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;

    position: relative;
}

/* Başlık ve Yönlendirme Yazıları */
.xaf-static-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #555;
}

/* Resim için Alan */
.card-body::before {
    content: "";
    display: block;
    width: auto;
    height: 80px;
    background-image: url('../images/softecod.png');
    background-size: 80% !important;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0%;
    margin: 0 auto 15px;
}



/* Giriş Yap Butonu */
.dxbl-btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #101036;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dxbl-btn-primary:hover {
    background-color: #17173f !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .card-body {
        margin: 20px;
        padding: 15px;
    }

    .xaf-static-text {
        font-size: 14px;
    }

    .dxbl-btn-primary {
        font-size: 14px;
        padding: 10px;
    }
}
