.salih-contact-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Baloo 2', cursive;
}

/* Giriş Alanları ve Buton Ortak Stili */
.salih-contact-container .form-item {
    margin-bottom: 15px;
}

.salih-contact-container input[type="text"],
.salih-contact-container input[type="email"],
.salih-contact-container input[type="tel"],
.salih-contact-container textarea,
.salih-contact-container input[type="submit"] {
    width: 100%; /* Hepsi full width */
    padding: 14px 18px;
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    border-radius: 8px; /* Diğer alanlarla aynı köşe yumuşaklığı */
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Input Özel Stilleri */
.salih-contact-container input[type="text"],
.salih-contact-container input[type="email"],
.salih-contact-container input[type="tel"],
.salih-contact-container textarea {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #1a1a1a;
}

/* Mesaj Alanı */
.salih-contact-container textarea {
    height: 150px;
    resize: vertical;
}

/* Odaklanma Efekti */
.salih-contact-container input:focus,
.salih-contact-container textarea:focus {
    outline: none;
    border-color: #fdf100;
    background-color: #ffffff;
}

/* Mesaj Gönder Butonu (Full Width & Uyumlu) */
.salih-contact-container input[type="submit"] {
    background-color: #1a1a1a;
    color: #fdf100;
    border: 2px solid #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Buton Hover Durumu */
.salih-contact-container input[type="submit"]:hover {
    background-color: #fdf100;
    color: #1a1a1a;
    border-color: #fdf100;
}

/* Captcha Alanı Hizalama */
.salih-form-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.captcha-box {
    display: flex;
    justify-content: center;
}