/* Input alanlarının stilini modern hale getiriyoruz */
.custom-input {
    border-radius: 30px; /* Oval kenarlar */
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 16px;
    background-color: #f9f9f9; /* Hafif gri arka plan */
    transition: all 0.3s ease-in-out;
}

/* Input üzerine tıklanınca veya odaklanınca sınır rengini değiştiriyoruz */
.custom-input:focus {
    border-color: #4A90E2;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
    outline: none;
}

/* Placeholder metinleri için */
.custom-input::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Sayfa Yapısını Düzenliyoruz */
.wrapper {
    min-height: 100vh; /* Sayfa yüksekliğini tam yap */
    display: flex;
    flex-direction: column;
}

/* Ana içerik alanının esnemesi için */
main {
    flex-grow: 1; /* İçerik alanı genişleyip sayfayı doldurur */
}

/* Footer için ince ve modern görünüm */
.custom-footer {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #0d6efd;
}

/* Linklerin düzenli görünmesi */
.custom-footer a {
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.custom-footer a:hover {
    color: #d1d1d1;
}

/* Label için stil */
.aboneno-label {
    font-size: 1.2rem; /* Daha büyük boyut */
    font-weight: bold; /* Kalın yazı */
    color: #dc3545; /* Şık bir kırmızı ton */
    text-transform: uppercase; /* Büyük harf ile yazım */
    letter-spacing: 1px; /* Harfler arasında boşluk */
    transition: all 0.3s ease; /* Etkileşimde geçiş efekti */
    position: absolute; /* Label'ı yukarı sabitle */
    top: 10px;
    left: 15px;
    pointer-events: none; /* Input üzerinde tıklanabilirliği kaldırır */
}

.aboneno-highlight {
    font-size: 1.5rem; /* Input yazı boyutu */
    padding: 15px;
    border: 2px solid #dc3545;
    box-shadow: 0px 0px 8px rgba(220, 53, 69, 0.4);
}

/* Focus animasyonu */
.aboneno-highlight:focus + .aboneno-label,
.aboneno-highlight:not(:placeholder-shown) + .aboneno-label {
    font-size: 1rem; /* Daha küçük */
    color: #c82333; /* Daha koyu bir kırmızı */
    top: -20px; /* Yukarı kaydır */
    left: 10px; /* Hafif sola */
}

/* Focus efekti */
.aboneno-highlight:focus {
    border-color: #c82333;
    box-shadow: 0px 0px 10px rgba(200, 35, 51, 0.5);
}
