/* MAZK Global Renk Paleti ve Font Ayarları */
/* MAZK Global Renk Paleti ve Font Ayarları */
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, #1a1f2c 0%, #0e1118 100%);
    min-height: 100vh;
    min-height: -webkit-fill-available; /* Mobil tarayıcı adres barı pürüzünü çözer */
    display: flex;
    align-items: center;
    color: #f8fafc;
    overflow-x: hidden;
    margin: 0;
    padding: 20px 0; /* Mobilde yukarı-aşağı minik bir nefes payı */
}

/* Giriş/Kayıt Kartı Tasarımı - Boşluklar Sıkıştırıldı */
.auth-card {
    background: rgba(21, 26, 38, 0.8);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 30px; /* Biraz daha kompakt köşe */
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 1.50rem 1.25rem; /* İç boşluklar sıkıştırıldı (Eskisi 3rem idi) */
}

/* Form Elemanları - Sıkıştırma */
.form-control {
    background-color: #0e1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border-radius: 10px;
    padding: 0.50rem 0.7rem; /* Giriş kutuları daraltıldı */
    font-size: 0.9rem;
    transition: all 0.2s;
}

/* Butonlar - Sıkıştırma */
.btn-turuncu, .btn-yesil, .btn-google {
    border-radius: 10px;
    padding: 0.65rem; /* Buton yükseklikleri azaltıldı */
    font-size: 0.9rem;
}

/* Ara Bölücü - Sıkıştırma */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.6rem 0; /* Yukarı ve aşağı boşluğu iyice daralttık (Eskisi 1.1rem idi) */
}

/* Logo - Turuncu & Yeşil Gradyan */
.brand-logo {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #f97316, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

/* Giriş / Kayıt Sekme Menüsü (Tabs) */
.nav-pills {
    background-color: #0e1118;
    padding: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-pills .nav-link {
    color: #94a3b8;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    transition: all 0.25s ease;
}

.nav-pills .nav-link.active {
    background-color: #1a1f2c;
    color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

/* Form Elemanları */
.form-label {
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: #0e1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: #0e1118;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
    color: #f8fafc;
}

.input-group-text {
    border-color: rgba(255, 255, 255, 0.1);
    color: #64748b;
    background-color: #0e1118;
}

/* Giriş Butonu - Enerjik Turuncu */
.btn-turuncu {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-turuncu:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    color: white;
}

/* Kayıt Butonu - Finans Yeşili */
.btn-yesil {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-yesil:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    color: white;
}

/* Google ile Giriş Butonu - Yeni Minimalist ve Küçük Sürüm */
.btn-google {
    background-color: rgba(255, 255, 255, 0.08); /* Tam beyaz yerine koyu moda uyan şeffaf beyaz */
    color: #cbd5e1; /* Daha soft bir yazı rengi */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* Tam yuvarlak (pill) modern görünüm */
    padding: 0.45rem 1.2rem; /* Yükseklik azaltıldı, sağ-sol daraltıldı */
    font-size: 0.8rem; /* Yazı boyutu küçültüldü */
    font-weight: 500;
    display: inline-flex; /* Butonun tüm satırı kaplamasını engeller */
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    width: auto; /* Genişliği serbest bıraktık */
    margin: 0 auto; /* Dışarıdan ortalamak için */
}

.btn-google:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Görsel yerine FontAwesome ikonu için yeni stil */
.btn-google i {
    font-size: 0.9rem;
    color: #cbd5e1; /* Yazı rengiyle birebir uyumlu soft gri/beyaz */
    transition: color 0.2s;
}

.btn-google:hover i {
    color: #ffffff; /* Üzerine gelince ikon da parlasın */
}

/* Ara Bölücü (veya) Çizgisi */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 1.75rem 0;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider:not(:empty)::before { margin-right: 1em; }
.divider:not(:empty)::after { margin-left: 1em; }

