html,
body {
    background-image: url('/static/img/bgphoto.jpg');
    /* senin görsel yolunla değiştir */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* sayfa kaydırılırken sabit kalır */
    background-color: #fff;
    /* arka plan rengi */
    min-height: 100vh;
    margin: 0;
    padding: 0;


}


.container-fluid {

    height: 70vh;

}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;

}

.captcha-container img {
    width: 200px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

.some-content {
    min-width: 280px;
    max-width: 600px;
    width: 90%;

}


.crispy-field {
    margin-bottom: 6px;
}



.captcha-container input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #c4c4c4;
    border-radius: 5px;

}

.captcha-container input:hover {
    border: 2px solid #a9a9a9;

}

.captcha-container input:focus {
    border: 2px solid #8b8b8b;

    outline: none;

}

.footer {
    margin-top: 140px;
    background-color: transparent;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.custom-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.custom-navbar-center {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
}

.custom-nav-link {
    font-size: 18px;
    /* Font büyüklüğü */
    color: #333;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    text-align: center;
}

.captcha-container {
    max-width: 100%;
    overflow-x: auto;
}

.gallery-img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.gallery-img:hover {
    transform: scale(1.05);
}