﻿/* Genel Stil */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    position: relative;
    background: url('/img/arkaplansssss.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 30px;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.15); /* Daha şeffaf hale getirildi */
        z-index: -1;
    }



/* Container */
.container {
    display: flex;
    flex-direction: row;
    width: 1100px; /* Genişliği artırıldı */
    max-width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Sol Bölüm - Logo ve Görseller */
.image-section {
    width: 50%;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 200px; /* Logoyu büyüttük */
    height: auto;
}

.system-title {
    font-size: 28px; /* Başlık büyütüldü */
    font-weight: bold;
    margin-top: 20px;
    color: #003153;
    text-align: center;
}

    .system-title span {
        color: #ff6600;
    }

.side-image {
    width: 90%; /* Resim genişletildi */
    margin-top: 30px;
}

/* Sağ Bölüm - Login Form */
.login-form {
    width: 50%;
    padding: 60px; /* İç boşluk artırıldı */
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    /* Başlık */
    .login-form h2 {
        font-size: 28px; /* Başlık büyütüldü */
        text-align: center;
        color: #333;
        margin-bottom: 30px;
    }

/* Input Grupları */
.input-group {
    margin-bottom: 25px;
}

    .input-group label {
        font-size: 18px; /* Yazı büyütüldü */
        font-weight: bold;
        color: #333;
        display: block;
        margin-bottom: 8px;
    }

/* Input Stili */
/* Input Stili */
.input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    border: 2px solid #ccc;
    padding: 16px; /* İç boşluk artırıldı */
    transition: 0.3s;
    width: 100%; /* Inputların düzgün hizalanması için genişlik eklendi */
}

    .input-wrapper:hover {
        border-color: #003153;
    }

    .input-wrapper i {
        font-size: 22px; /* İkon büyütüldü */
        color: #666;
        margin-right: 15px;
    }

    .input-wrapper input {
        width: 100%; /* Input alanının tam genişliği kaplaması sağlandı */
        border: none;
        outline: none;
        font-size: 18px; /* Yazı büyütüldü */
        background: none;
        flex: 1; /* Input'un esnek olması sağlandı */
    }

/* Mobil uyumluluk için güncellendi */
@media (max-width: 768px) {
    .input-wrapper {
        padding: 14px;
    }

        .input-wrapper input {
            font-size: 16px;
        }
}

/* Buton Stili */
.login-btn {
    width: 100%;
    padding: 16px; /* Buton büyütüldü */
    background: #003153;
    color: white;
    font-size: 20px; /* Buton yazısı büyütüldü */
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #ff6600;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* İçeriği dikey hizala */
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .image-section {
        display: none;  Mobilde resim ve logo bölümünü gizle 
    }

    .login-form {
        width: 500px; /* Form genişliği artırıldı */
        max-width: 400px;
        padding: 40px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.9); /* Hafif şeffaf arka plan */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .login-form h2 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 20px;
            color: #003153;
        }

    .input-wrapper {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        margin-bottom: 15px;
        border: 2px solid #003153;
        display: flex;
        align-items: center;
        background: white;
    }

        .input-wrapper input {
            font-size: 18px;
            padding: 12px;
            width: 100%;
            border: none;
            outline: none;
        }

    .login-btn {
        font-size: 20px;
        padding: 15px;
        border-radius: 10px;
        width: 100%;
        background: #003153;
        color: white;
        font-weight: bold;
        border: none;
        transition: 0.3s;
        cursor: pointer;
        text-align: center;
    }

        .login-btn:hover {
            background: #ff6600;
        }
}








.system-titles {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    color: black;
    background-image: linear-gradient(90deg, #333, #000);
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeIn 1.5s ease-in-out, scaleUp 1.5s ease-in-out;
}

/* Alt çizgi animasyonu */
.system-titles::after {
    content: "";
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #333, #000);
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.system-titles:hover::after {
    transform: scaleX(1);
}

/* Alt yazı */
.system-titles span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    margin-top: 5px;
    animation: fadeIn 2s ease-in-out;
}

/* İkonları özelleştirme */
.system-titles i {
    margin-right: 8px;
    color: black;
    font-size: 26px;
}




/* Fade-in Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale Animasyonu */
@keyframes scaleUp {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}


