/* =======================================================
   KIRMIZI MODERN TEMA - GİRİŞ YAP FORMU STİLİ (DÜZELTİLMİŞ)
   ======================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; 
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background-color: #1E1E1E;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(229, 9, 20, 0.3);
    text-align: center;
}

.login-box h2 {
    color: #E50914;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 700;
}

.input-grup {
    margin-bottom: 20px;
    text-align: left;
}

.input-grup label {
    display: block;
    margin-bottom: 8px;
    color: #AAA;
    font-size: 0.9em;
}

/* BURAYI DÜZELTTİK: type="email" eklendi */
.input-grup input[type="text"],
.input-grup input[type="password"],
.input-grup input[type="email"] {
    width: 100%;
    padding: 12px;
    background-color: #2A2A2A !important; /* Arka planı koyu griye zorlar */
    border: 1px solid #444;
    border-radius: 4px;
    color: white !important; /* Yazı rengini beyaza zorlar */
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-grup input:focus {
    border-color: #E50914; 
    box-shadow: 0 0 5px rgba(229, 9, 20, 0.7);
    outline: none;
}

/* Giriş Butonu Stili */
.giris-btn {
    width: 100%;
    background-color: #E50914;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.giris-btn:hover {
    background-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.5);
}

/* Alt Linkler */
.alt-linkler {
    margin-top: 25px;
    font-size: 0.9em;
}

.alt-linkler a {
    color: #AAA;
    text-decoration: none;
    transition: color 0.3s;
}

.alt-linkler a:hover {
    color: #E50914;
}

.ayirici {
    color: #555;
    margin: 0 10px;
}

.uyeol-link {
    font-weight: 600;
}