/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Wrapper ve Giriş Container */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}

.login-container {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: slideIn 0.8s ease-out;
}

/* Başlık Stilleri */
h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #4a90e2;
    transition: width 0.4s ease;
}

.login-container:hover h2::after {
    width: 50%;
}

/* Giriş Alanları (input-group) */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
}

.input-group label {
    font-weight: 500;
    font-size: 14px;
    color: #34495e;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f7f9fc;
}

input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    background: #fff;
    transform: scale(1.03);
}

input::placeholder {
    color: #b0b0b0;
    font-style: italic;
}

/* Koşul Onayı (Beni Hatırla) */
.terms-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
}

.terms-agreement input {
    width: auto;
    margin: 0;
}

/* Buton */
button {
    padding: 14px;
    background: #4a90e2;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 15px;
    width: 100%;
    display: block;
}

button:hover {
    background: #357abd;
}

button::before {
    content: none;
}

/* Hata Mesajları */
.error {
    font-size: 14px;
    color: #e74c3c;
    margin-top: 10px;
    animation: shake 0.3s ease;
}

/* Başarı Mesajları (Varsa Kullanım İçin) */
.success {
    font-size: 14px;
    color: #27ae60;
    margin-top: 10px;
}

/* Bağlantılar */
a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Animasyonlar */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mevcut media query'yi güncelliyoruz */
@media (max-width: 480px) {
    .login-container {
        padding: 20px 15px; /* Yan padding'i azaltıyoruz */
        max-width: 95%; /* Kenarlarda biraz daha boşluk */
    }

    h2 {
        font-size: 24px; /* Başlık boyutunu küçültüyoruz */
        margin-bottom: 20px;
    }

    .input-group {
        margin-bottom: 15px; /* Input gruplar arası boşluğu artırıyoruz */
    }

    input, button {
        padding: 12px 10px; /* Yan padding'i azaltıyoruz */
        font-size: 15px; /* Okunabilirlik için biraz büyük yazı */
    }

    .terms-agreement {
        flex-wrap: wrap; /* Küçük ekranda satır atlatıyoruz */
        gap: 8px;
        margin: 15px 0;
    }

    .terms-agreement label {
        font-size: 13px; /* Metni biraz küçültüyoruz */
        line-height: 1.3; /* Satır aralığını ayarlıyoruz */
    }

    /* Mobilde input scale efektini kaldırıyoruz */
    input:focus {
        transform: none;
        box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
    }

    /* Küçük ekranlarda başlık alt çizgisi */
    h2::after {
        height: 3px;
        bottom: -4px;
    }
}

/* 360px altı için ekstra ayarlar */
@media (max-width: 360px) {
    .login-container {
        padding: 15px 10px;
    }

    h2 {
        font-size: 22px;
    }

    button {
        font-size: 14px;
    }
}