/* Genel stil */
.contact-form-page {
    display: flex;
    flex-direction: row; /* Büyük ekranlarda yatay yerleşim */
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 10px;
    height: 140vh; /* Sayfanın yüksekliği tam ekran olsun */
    position: relative; /* Konumlandırma için gerekli */
}

/* Arka plan resmi için stil */
.contact-form-image-container {
    flex: 1; /* Resmin esnekliğini artırarak genişlemesini sağlar */
    max-width: 50%; /* Yüksek ekranlarda ekranın yarısını kaplasın */
    max-height: 80%; /* Yüksekliğini ekran yüksekliğine göre ayarla */
    background-size: cover; /* Resmi tam kapsamasını sağlar */
    background-position: center; /* Resmin ortalanmasını sağlar */
    background-repeat: no-repeat; /* Tekrarlama olmadan arka plan resmi */
    padding: 0;
    margin: 0;
}

/* Form içeriği için stil */
.contact-form-content {
    flex: 1; /* Form içeriğinin kalan alanı kaplamasını sağlar */
    max-width: 500px;
    align-items: center;
    margin-left: 100px;
    position: relative; /* Konumlandırma için gerekli */
}

.editorial-choices-container {
    margin-top: 0%;
}


/* Form başlığı için stil */
.contact-form-title {
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 20px;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Form elemanları için stil */
.contact-form-content form {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form-header-title {
    font-size: 2em; /* Başlık font boyutunu küçült */
    margin-left: 70px;
    text-align: left;
    padding: 10px;
    width: 90%;
}

.contact-form-content label {
    margin-bottom: 10px;
    font-size: 1em;
    color: #101010;
    font-weight: bold; /* Label'ları bold yapar */
}

.contact-form-content input {
    height: 35px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-content textarea {
    resize: vertical; /* Kullanıcının textarea boyutunu dikey olarak değiştirmesine izin verir */
    height: 110px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-content button {
    padding: 15px;
    background-color: #389EBC;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
}

.contact-form-content button:hover {
    background-color: #1D5680;
}

.contact-form-content input::placeholder,
.contact-form-content textarea::placeholder {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px; /* Font boyutunu değiştirin */
    color: #666; /* Font rengini değiştirin */
}

/* Veri güvenliği metni için stil */
.data-security-text {
    font-family: 'Urbanist', sans-serif;
    text-align: right;
    font-size: 0.9em;
    margin-left: 10px!important;
    color: #6F6F6F;
    width: 100%;
}

.data-security-text button {
    font-family: 'Urbanist', sans-serif;
    text-align: left;
    background: none;
    border: none;
    color: #7C3AED;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.9em;
    padding: 0;
}

.data-security-text button:hover {
    text-decoration: none;
    background: none;
}

@media (min-width: 768px) {
    .thank-you-message-contact {
        font-family: 'Urbanist', sans-serif;
        font-size: 3em!important;
        text-align: left;
        margin-top: 30%;
        padding-top: 30%!important;
        font-weight: bold;
        padding-left: 10%;
    }.small-screen-header-title{
        display: none;
    }}

/* Responsive tasarım */
@media (max-width: 768px) {
    .contact-form-page {
        flex-direction: column; /* Küçük ekranlarda dikey yerleşim */
        align-items: center;
        
    }

    .contact-form-image-container {
      all: unset;
    }

    .contact-form-content {
        position: relative; /* Konumlandırma için gerekli */
        max-width: 100%; /* İçeriği mobil ekranlarda tam genişlikte yapın */
        margin-left: 0;
        margin-right: 0;
        
        align-items: center;
        padding: 0 10px; /* Kenarlardan biraz boşluk ekleyin */
        margin-top: 10%; /* Formu sayfanın alt kısmında konumlandırır */
    }

    .small-screen-header-title{
        margin: 0px;
        padding: 0px;
        padding-bottom: 10px;
    }

    .contact-form-header-title {
        /* font- */
        display: none;
    }

    .contact-form-title {
        font-size: 1.5em; /* Başlık font boyutunu küçült */
        margin-bottom: 10px;
        text-align: center;
    }

    .contact-form-content form {
        padding-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .contact-form-content label,
    .contact-form-content input,
    .contact-form-content textarea {
        font-size: 0.9em; /* Font boyutunu küçült */
    }

    .contact-form-content button {
        font-size: 0.9em; /* Buton font boyutunu küçült */
        padding: 12px;
    }

    .data-security-text {
        margin-left: 0px!important; /* Mobil ekranlarda margin'i kaldır */
        text-align: center; /* Metni ortalayın */
        width: 100%;
    }

    .thank-you-message-contact{
        font-family: 'Urbanist', sans-serif;
        font-size: 2.5em!important; /* Teşekkür mesajı font boyutunu küçült */
        text-align: left;
        /* margin-top: -130%!important; */
        text-align: center;
        font-weight: bold;
        line-height: 2;
    }

    .editorial-choices-container {
        display: none;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    
    .thank-you-message-contact{
        padding-top: 0px!important;
    }
    .contact-form-page{
        height: 80%;
    }
    .contact-form-content {
        margin-left: 0%;
    }
    .data-security-text{
        text-align: left!important;
        width: 90%!important;
        margin-left: 30px!important;
    }
    .edit-text {
        margin-left: 10%!important;
    }
}