/* Genel Sıfırlama ve Font */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f8ff; 
}

/* Arka Plan Efekti */
.background-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #e0f7fa 0%, #b2ebf2 100%);
    position: relative;
    overflow: hidden;
}

/* Telefon Maketi (Sadece dış hat ve gölge bıraktık) */
.phone-mockup {
    /* Mobil ekranda tam genişlemeyi sağlamak için sabit genişlik kaldırıldı */
    max-width: 500px; /* Maksimum genişliği sabitle */
    width: 90%; /* Mobilde genişliğin %90'ını kullan */
    /* height: 750px; Yüksekliği içerik belirlesin */
    background: #333; 
    border-radius: 40px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4); 
    padding: 15px;
    position: relative;
    box-sizing: border-box;
}

.app-screen {
    background-color: #e0f7fa; 
    border-radius: 25px;
    width: 100%; /* Mockup içine tam sığsın */
    /* height: 100%; Yüksekliği otomatik ayarlasın */
    padding: 30px 20px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Başlık Alanı */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 50px;
    color: #1565c0; 
    margin-bottom: 5px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Form Alanları */
.form-group {
    margin-bottom: 18px;
    position: relative;
    /* YENİ: select box'ların üzerine başka bir şey binmesin diye z-index ekleyelim */
    z-index: 1; 
}

/* Input ve Select Stil Tanımı */
input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 15px;
    border: 1px solid #b2ebf2; 
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    /* KRİTİK: Mobil cihazlarda SELECT elementinin doğal davranışını korur */
    appearance: menulist; 
    -webkit-appearance: menulist;
}

/* Select Box için Ok İşareti (Sadece stil içindir, işlevi engellemez) */
select {
    padding-right: 40px; 
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300796b%22%20d%3D%22M287%2069.4L146.2%20208.7L5.4%2069.4h281.2z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
    /* DİKKAT: Mobil cihazlarda tıklamayı engelleyen appearance: none SİLİNDİ veya menulist ile değiştirildi. */
}

/* ... (Diğer stiller) ... */

/* KVKK Onay Kutusu (Küçük cihazlarda metnin kaymasını engeller) */
.kvkk-container {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 14px;
}

.kvkk-container label {
    display: flex;
    align-items: center; 
    line-height: 1.2; /* Satır yüksekliği ekledik */
}

/* Kaydol Butonu */
button#kaydolBtn {
    width: 100%;
    padding: 15px;
    background-color: #1565c0; 
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
    transition: background-color 0.3s;
}

/* ... (Diğer stiller) ... */

/* Erişilebilirlik için gizleme */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}