/* style.css - Tüm Sayfalar İçin Ortak Tasarım */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #050A1F;       /* Arka plan en koyu lacivert */
    --bg-card: #111827;       /* Form kartı rengi */
    --bg-input: #1F2937;      /* Input içi renk */
    --primary-blue: #3B82F6;  /* Ana buton mavisi */
    --primary-hover: #2563EB; /* Buton hover */
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --border-color: #374151;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: radial-gradient(circle at center, #1e3a8a 0%, var(--bg-main) 100%);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ORTAK KART YAPISI (Login & Register) --- */
.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    background-color: rgba(17, 24, 39, 0.8); /* Hafif şeffaf */
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-area {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.auth-header h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }
.auth-header p { color: var(--text-gray); font-size: 0.9rem; }

/* --- FORM ELEMANLARI --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 8px; color: var(--text-gray); }

.input-wrapper { position: relative; }

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 12px 12px 12px 45px; /* İkon boşluğu */
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-blue);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover { background-color: var(--primary-hover); }

.auth-footer { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-gray); }
.auth-footer a { color: var(--primary-blue); text-decoration: none; font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* --- PAKET SEÇİMİ EKRANI İÇİN EK STİLLER --- */
.pricing-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-5px); }

/* Popüler Kart Vurgusu */
.price-card.popular {
    background: linear-gradient(180deg, #1e40af 0%, var(--bg-card) 40%);
    border: 1px solid #3B82F6;
    transform: scale(1.05);
    z-index: 2;
}
.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #F59E0B;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-header h3 { font-size: 1.4rem; margin-bottom: 10px; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: white; }
.price-period { font-size: 1rem; color: var(--text-gray); font-weight: 400; }

.features-list { list-style: none; margin: 30px 0; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: var(--text-gray); }
.features-list li i { color: var(--primary-blue); }
