:root {
    --primary: #111;
    --accent: #2563eb; /* Müşteri için daha canlı bir mavi */
    --bg: #f9fafb;
    --border: #e5e7eb;
    --text-muted: #6b7280;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    color: var(--primary);
}

.register-wrapper {
    display: flex;
    height: 100vh;
}

/* --- SOL TARAF --- */
.register-visual {
    flex: 1.2; /* Müşteri tarafında görsel biraz daha geniş olabilir */
    position: relative;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.visual-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }

.logo-text { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; color: #fff; text-decoration: none; }
.logo-link { text-decoration: none; }

.visual-content h2 { font-size: 3.5rem; line-height: 1.1; margin-top: auto; margin-bottom: 20px; }
.visual-content p { font-size: 1.2rem; opacity: 0.9; max-width: 450px; margin-bottom: 30px; }

.trust-badges { display: flex; gap: 20px; margin-bottom: 40px; }
.badge-item { 
    background: rgba(255,255,255,0.2); 
    backdrop-filter: blur(5px);
    padding: 8px 16px; 
    border-radius: 50px; 
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
}

.visual-footer { font-size: 0.8rem; opacity: 0.6; }

/* --- SAĞ TARAF --- */
.register-form-container {
    flex: 1;
    max-width: 550px;
    background: #fff;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.form-header { margin-bottom: 30px; }
.form-header h1 { font-size: 2rem; margin: 0 0 10px; }
.form-header p { color: var(--text-muted); }

/* FORM ELEMANLARI */
.input-row { display: flex; gap: 20px; }
.input-group { margin-bottom: 20px; width: 100%; }

label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: #333; }

input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s;
    background: #fcfcfc;
}

input:focus { border-color: var(--primary); background: #fff; }

/* Şifre Alanı (Göz İkonu İçin Wrapper) */
.password-wrapper { position: relative; }
.toggle-password {
    position: absolute;
    right: 15px; top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.checkbox-group input { width: auto; margin-top: 3px; }
.checkbox-group a { color: var(--primary); text-decoration: underline; }

/* Butonlar */
.btn {
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #333; transform: translateY(-2px); }

.w-100 { width: 100%; }

/* Google Butonu */
.btn-google {
    background: #fff;
    border: 1px solid var(--border);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.btn-google:hover { background: #f9f9f9; }
.btn-google img { width: 20px; }

.divider {
    text-align: center;
    margin: 20px 0 0;
    position: relative;
}
.divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: var(--border); z-index: 1;
}
.divider span {
    background: #fff; padding: 0 10px; position: relative; z-index: 2;
    font-size: 0.85rem; color: #999;
}

.login-redirect {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 25px;
}
.login-redirect a { color: var(--primary); font-weight: 700; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .register-visual { display: none; }
    .register-form-container { flex: 1; max-width: 100%; padding: 20px; }
}