/* Kayıt Ol Sayfası Stilleri */
.signup-main {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
}

.signup-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.signup-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.login-link-section {
    margin-bottom: 3rem;
}

.login-text {
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.login-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.login-link:hover {
    color: var(--accent-purple-light);
    text-decoration: underline;
}

.signup-buttons {
    margin-bottom: 3rem;
}

.signup-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.google-btn {
    background: var(--text-white);
    color: #333333;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: #333333;
    text-decoration: none;
}

.facebook-btn {
    background: #1877f2;
    color: var(--text-white);
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.email-btn {
    background: var(--text-white);
    color: #333333;
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.separator {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.separator-text {
    background: var(--bg-dark);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

/* Light tema görünürlük düzeltmeleri */
[data-theme="light"] .signup-main { background: transparent; }
[data-theme="light"] .signup-title { color: #111827; }
[data-theme="light"] .login-text { color: #374151; }
[data-theme="light"] .google-btn,
[data-theme="light"] .email-btn { background: #ffffff; color: #111827; border: 1px solid rgba(0,0,0,0.1); }
[data-theme="light"] .separator-text { background: transparent; color: #6b7280; }
[data-theme="light"] .info-text { color: #374151; }

.info-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .signup-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .login-link-section {
        margin-bottom: 2.5rem;
    }
    
    .signup-buttons {
        margin-bottom: 2.5rem;
    }
    
    .signup-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .info-text {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .signup-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .signup-content {
        padding: 0 1rem;
    }
    
    .signup-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-text,
    .login-link {
        font-size: 1rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
}
