

/* ============================================
   ECHO ÇEVİRİ - LOGIN & REGISTER CSS
   ============================================ */

/* === AUTH SAYFA ARKAPLAN === */
body {
    background-color: #0a0a0a;
    min-height: 100vh;
}

/* === AUTH FORM CONTAINER === */
.content-container.auth-form {
    width: 90%;
    max-width: 500px;
    margin: 80px auto;
    background-color: #141414;
    border: 1px solid #252525;
    border-radius: 8px;
    padding: 50px 45px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.auth-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 10px;
    padding-left: 0;
    border-left: none;
}

.auth-form > p:first-of-type {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* === HATA VE BAŞARI MESAJLARI === */
.auth-form p[style*="color: red"] {
    background-color: rgba(239, 83, 80, 0.08);
    border-left: 3px solid #ef5350;
    color: #ff6b6b !important;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.auth-form p[style*="color: green"] {
    background-color: rgba(76, 175, 80, 0.08);
    border-left: 3px solid #4CAF50;
    color: #66bb6a !important;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* === FORM GRUPLARI === */
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 11px 16px;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
    background-color: #1e1e1e;
}

.form-group input:hover {
    border-color: #4CAF50;
}

.form-group input::placeholder {
    color: #666;
}

/* === BUTON === */
.auth-form form {
    width: 100%;
}

.btn {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.2s;
    box-sizing: border-box;
    display: block;
}

.btn:hover {
    background-color: #45a049;
}

.btn:active {
    transform: scale(0.98);
}

/* === ALT LINK === */
.auth-form > p:last-child {
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 0;
}

.auth-form > p:last-child a {
    color: #4CAF50;
    font-weight: 500;
    transition: color 0.2s;
}

.auth-form > p:last-child a:hover {
    color: #45a049;
}

/* === REKLAM ALANLARI === */
.side-ad-wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 160px;
    height: 600px;
    background-color: #141414;
    border: 1px solid #252525;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
}

.side-ad-left {
    left: 20px;
}

.side-ad-right {
    right: 20px;
}

.bottom-ad {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 40px auto 20px;
    background-color: #141414;
    border: 1px solid #252525;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
}

/* === RESPONSİVE === */
@media (max-width: 1400px) {
    .side-ad-wrapper {
        width: 120px;
        height: 500px;
    }
    
    .side-ad-left {
        left: 10px;
    }
    
    .side-ad-right {
        right: 10px;
    }
}

@media (max-width: 1200px) {
    .side-ad-wrapper {
        display: none;
    }
    
    .bottom-ad {
        max-width: 468px;
        height: 60px;
        margin: 30px auto 15px;
    }
}

@media (max-width: 768px) {
    .content-container.auth-form {
        padding: 40px 35px;
        margin: 60px auto;
    }
    
    .auth-form h2 {
        font-size: 26px;
    }
    
    .bottom-ad {
        max-width: 320px;
        height: 50px;
        margin: 25px auto 10px;
    }
}

@media (max-width: 480px) {
    .content-container.auth-form {
        width: 95%;
        padding: 35px 25px;
        margin: 40px auto;
    }
    
    .auth-form h2 {
        font-size: 24px;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 15px;
    }
}

/* auth.css dosyasının en altına ekle */

.remember-me-box {
    margin: 15px 0; /* Üstten ve alttan boşluk bırakır */
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ddd; /* Temana uygun açık gri bir renk */
}

.remember-me-box label {
    display: flex;
    align-items: center;
    cursor: pointer; /* Üzerine gelince el işareti çıksın */
}

.remember-me-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px; /* Kutu ile yazı arasına boşluk */
    cursor: pointer;
    accent-color: #e74c3c; /* Tik rengi (Sitenin ana rengine göre değiştir) */
}