﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* =========================
   ACCOUNT PAGES BACKGROUND
   ========================= */

body.account-bg {
    background-image: url('/Content/images/login-arka-plan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
}

/* Login / Register / Forgot vs kutuları ortalansın */
.account-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Eski dönen logo tamamen kapansın */
.background-logo {
    display: none !important;
}

.footer-logo-big {
    width: 400px; /* büyüklük */
    height: auto; /* oran bozulmasın */
}

/* Hakkımızda başlık altı sarı çizgi */
.about-divider {
    width: 240px; /* çizginin uzunluğu */
    height: 3px; /* çizginin kalınlığı */
    background-color: #FFD700; /* sarı renk */
    margin-top: 12px;
}

.ib-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.ib-hero-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.ib-feature:hover .ib-icon svg {
    fill: #000;
}

/* Navbar Auth Buttons */
.btn-auth-register {
    background-color: #f5c400; /* altın sarısı */
    color: #000;
    border: 2px solid #f5c400;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-auth-register:hover {
        background-color: #000;
        color: #f5c400;
        border-color: #000;
    }

.btn-auth-login {
    background-color: #000;
    color: #f5c400;
    border: 2px solid #000;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-auth-login:hover {
        background-color: #f5c400;
        color: #000;
        border-color: #f5c400;
    }

