/* =======================================================
   LOREFIX - MODERN ÜYE KAYIT STİLLERİ (GÜNCEL)
   ======================================================= */

:root {
    --primary-blue: #3498db;
    --primary-pink: #e91e63;
    --dark-text: #2c3e50;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --border-color: #e1e4e8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--dark-text);
    line-height: 1.6;
}

/* HEADER & LOGO (Dokunulmadı) */
.main-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo { display: flex; align-items: center; gap: 5px; text-decoration: none; }
.logo-circle { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: white; font-weight: bold; }
.logo-circle.blue { background: var(--primary-blue); }
.logo-circle.pink { background: var(--primary-pink); }
.logo-text { font-size: 1.6rem; font-weight: 800; color: var(--dark-text); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 600; font-size: 0.95rem; }

/* FORM KONTEYNER */
.kayit-container {
    max-width: 800px;
    margin: 40px auto;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h1 { text-align: center; margin-bottom: 10px; font-weight: 800; }
.subtitle { text-align: center; color: #7f8c8d; margin-bottom: 30px; font-size: 0.95rem; }

fieldset {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* SATIR DÜZENİ (FORM-ROW) */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.form-row label {
    flex: 0 0 150px; /* Etiketleri sola sabitler ve hizalar */
    font-weight: 600;
    font-size: 0.95rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="telefon"],
.form-row input[type="password"],
.form-row select,
.form-row textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

/* ŞİFRE GRUBU (Göz ikonu için) */
.password-container {
    flex: 1;
    display: flex;
    gap: 5px;
}

.password-container input {
    flex: 1;
}

.toggle-btn {
    background: #f1f3f5;
    border: 1px solid #ccc;
    padding: 0 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.toggle-btn:hover { background: #e9ecef; }

/* ONAY KUTULARI (Checkbox Hizalaması) */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.checkbox-container {
    display: flex;
    align-items: center; /* Kutucuk ve metni dikey ortalar */
    gap: 10px;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* KAYIT BUTONU */
.submit-section { text-align: center; margin-top: 20px; }

.submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* FOOTER */
.main-footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    color: #95a5a6;
    font-size: 0.85rem;
}

/* MOBİL UYUM */
@media (max-width: 600px) {
    .form-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .form-row label { flex: none; width: 100%; }
    .kayit-container { margin: 20px 10px; padding: 20px; }
}