/* -----------------------------------------------------------
   PREMIUM AUTH TASARIMI (Giriş & Kayıt)
   ----------------------------------------------------------- */

/* Sayfanın arka planını kaplayan alan */
.auth-wrapper {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Resim sabit kalsın */
    min-height: 85vh; /* Ekranı kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Formun içindeki Kutu (Glassmorphism Efekti) */
.auth-box {
    background: rgba(15, 15, 15, 0.85); /* Yarı saydam siyah */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştır */
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 0; /* Keskin köşeler daha lüks durur */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-gold); /* Üstte Altın Çizgi */
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

/* Kutunun üzerindeki hafif parlama efekti */
.auth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 5px;
}

.auth-header p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* İnput Alanları */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--primary-gold);
    background: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    outline: none;
}

/* Linkler */
.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.auth-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: var(--primary-gold);
}

/* Mobil Uyum */
@media (max-width: 500px) {
    .auth-box {
        padding: 30px 20px;
    }
    .auth-header h2 {
        font-size: 1.8rem;
    }
}