:root {
    --signup-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --signup-accent: #38bdf8;
    --field-bg: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Split Layout */
.signup-wrapper {
    display: flex;
    flex: 1;
    min-height: 100vh;
}

.signup-sidebar {
    flex: 1;
    background: var(--signup-gradient);
    padding: 60px;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.signup-sidebar::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.signup-form-container {
    flex: 1.2;
    padding: 60px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-card {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 600px;
    position: relative;
}

/* Navigation Steps */
.step-indicator {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.step-dot {
    height: 6px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.step-dot.active {
    background: var(--signup-accent);
}

.step-dot.completed {
    background: #10b981;
}

/* Form Styling inherited by page content */
.form-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #475569;
}

.form-control {
    border-radius: 15px;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    background: var(--field-bg);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--signup-accent);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    background: white;
}

.form-control.error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.btn-next,
.btn-submit-modern {
    background: var(--signup-accent);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.btn-next:hover,
.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
    color: white;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--signup-accent);
}

.setup-content {
    display: none;
}

.setup-content.active {
    display: block;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 40px;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.success-overlay.show {
    display: flex;
}

@media (max-width: 991px) {
    .signup-sidebar {
        display: none;
    }

    .signup-form-container {
        padding: 30px 15px;
    }

    .signup-card {
        padding: 30px 20px;
    }
}

/* Integration styles */
.sync-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.sync-info h5 {
    color: #166534;
    font-size: 1rem;
}