/* Dahili resim captcha — tüm temalar + master site + panel girişi (2026-08-23 yeniden tasarım: tek satır input-group).
   Tema/panel CSS'leri (.proje-bilgi-talep-form, .auth-form-guvenlik) eski düzeni (gap/wrap/kenarlık) ezdiği için yerleşim kuralları !important. */
.site-form-captcha { width: 100%; }
.site-form-captcha__row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.site-form-captcha__image {
    flex: 0 0 auto;
    width: 150px !important;
    height: 48px !important;
    max-width: none !important;
    object-fit: cover;
    display: block;
    border: 0 !important;
    border-radius: 0 !important;
    background: #f4f4f4;
}
.site-form-captcha__refresh {
    flex: 0 0 auto;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f9fb;
    color: #555;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    line-height: 0;
}
.site-form-captcha__refresh:hover { background: #eef0f4; color: #111; }
.site-form-captcha__refresh:focus-visible { outline: 2px solid #5b4eff; outline-offset: -2px; }
.site-form-captcha__answer,
.site-form-captcha .site-form-captcha__answer.form-control {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    height: 48px;
    border: 0;
    border-radius: 0;
    padding: 0 14px;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: none;
    background: #fff;
    margin: 0;
}
/* 2026-08-23: tema/sayfa form kuralları (.form-input input, .demo-talep-modal .form-input input vb.) inputa kendi kenarlığını/
   yuvarlatmasını veriyordu → satır kenarlığıyla çift çizgi. Kenarlık yalnız satırda (__row) olur; inputta asla. */
.form-input .site-form-captcha__row .site-form-captcha__answer,
.site-form-captcha__row .site-form-captcha__answer,
.site-form-captcha__row input.site-form-captcha__answer {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 48px !important;
    min-height: 0 !important;
    padding: 0 14px !important;
    margin: 0 !important;
    background: #fff !important;
    width: auto !important;
}
.form-input .site-form-captcha__row .site-form-captcha__answer:focus,
.site-form-captcha__row .site-form-captcha__answer:focus { outline: none !important; box-shadow: inset 0 0 0 2px rgba(91, 78, 255, .25) !important; }
.site-form-captcha__row:focus-within { border-color: #5b4eff; }
@media (max-width: 420px) {
    .site-form-captcha__image { width: 120px; }
}
