/*.bg-fa-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.fa-icon {
    position: absolute;
    font-size: 120px;
    opacity: 0.1;*/ /* Çok hafif görünür */
/*animation: float 12s infinite ease-in-out alternate;
    color: #000;*/ /* İstersen burada renk değiştirebilirsin */
/*}*/

/* İkon konumları */
/*.icon1 {
    top: 15%;
    left: 8%;
    animation-duration: 6s;
}

.icon2 {
    top: 23%;
    left: 75%;
    animation-duration: 7s;
}

.icon3 {
    top: 70%;
    left: 15%;
    animation-duration: 8s;
}

.icon4 {
    top: 20%;
    left: 55%;
    animation-duration: 9s;
}

.icon5 {
    top: 85%;
    left: 45%;
    animation-duration: 10s;
}

.icon6 {
    top: 65%;
    left: 80%;
    font-size: 130px;
    animation-duration: 11s;
}*/


/* Hareket Animasyonu */
/*@keyframes float {
    from {
        transform: translateY(0px) rotate(0deg);
    }

    to {
        transform: translateY(-25px) rotate(8deg);
    }
}*/

/* Formun üste çıkması */
/*.login-wrapper {
    position: relative;
    z-index: 5;
}*/





/* ------------------ GLOBAL ------------------ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #140342; /* Koyu ana renk */
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Abel', sans-serif;
    color: #fff;
    min-height: 100vh;
}

/* ----------------- FORM TASARIMI ----------------- */
.overlay form {
    width: 380px; /* KÜÇÜLTÜLDÜ */
    min-height: 430px; /* KÜÇÜLTÜLDÜ */
    border-radius: 10px;
    margin: 6% auto; /* ÜST-ALT BOŞLUK ARTTI */
    padding: 35px 30px;
    /* YENİ RENKLER */
    background: #1b0558;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.45);
}

form .con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header {
    margin: 0 auto 8% auto;
    text-align: center;
    color: #fff;
}

    header h2 {
        font-size: 32px;
        color: #fff;
    }

    header p {
        color: #ddd;
    }



/* ------------------ INPUT ------------------ */
/* Her satır için container */
.input-row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
}

    .input-row:focus-within {
        border-color: #e4002b; /* kırmızı odak */
    }

/* Sol ikonu */
.input-icon {
    background: #fff;
    color: #140342;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Göz ikonu */
.eye-icon {
    background: #fff;
    color: #140342;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Ortadaki input */
.form-input {
    flex: 1;
    height: 46px;
    border: none;
    padding: 0 12px;
    outline: none;
    font-size: 15px;
    color: #140342;
}

    .form-input::placeholder {
        color: #aaa;
    }


/* ------------------ BUTTON ------------------ */
button.log-in {
    width: 100%;
    height: 50px;
    background: #e4002b; /* Kırmızı renk */
    color: white;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s;
}

    button.log-in:hover {
        background: #ff143e;
        transform: translateY(3px);
    }

/* Alt butonlar */
.submits {
    width: 48%;
    padding: 10px;
    margin-top: 10px;
    background: #fff;
    color: #140342;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .submits:hover {
        transform: translateY(2px);
    }

/* ------------------ ARKA PLAN İKON ANİMASYONU ------------------ */
.bg-fa-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.fa-icon {
    position: absolute;
    font-size: 115px;
    opacity: 0.08;
    animation: float 12s infinite ease-in-out alternate;
    color: #fff; /* Koyu zeminde beyaz ikon */
}

.icon1 {
    top: 15%;
    left: 8%;
    animation-duration: 6s;
}

.icon2 {
    top: 23%;
    left: 75%;
    animation-duration: 7s;
}

.icon3 {
    top: 70%;
    left: 15%;
    animation-duration: 8s;
}

.icon5 {
    top: 85%;
    left: 45%;
    animation-duration: 10s;
}

.icon6 {
    top: 65%;
    left: 80%;
    font-size: 130px;
    animation-duration: 11s;
}

@keyframes float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-25px) rotate(8deg);
    }
}

/* ------------------ MOBİL SORUN DÜZELTİLDİ ------------------ */
@media (max-width: 768px) {

    body {
        min-height: auto;
        height: auto;
        overflow-y: auto !important; /* Kayma sorunu fix */
    }

    .login-wrapper {
        min-height: auto !important;
        height: auto !important;
        padding: 40px 0;
    }

    .overlay form {
        width: 90%;
        margin-top: 40px;
        margin-bottom: 60px;
    }
}
