:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.register-container {
    min-height: 100vh;
    display: flex;
    padding: 2rem 1rem;
}

.register-left {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.register-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.password-strength {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    border-radius: 2px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.step {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.step.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

@media (min-width: 992px) {
    .register-left {
        display: flex;
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .register-card {
        padding: 1.5rem;
    }
}