/* Register page specific styles */
:root {
    --color-primary: #5b21b6;
    --color-accent: #10b981;
}

body {
    font-family: "Inter", sans-serif;
}

.hidden {
    display: none;
}

/* Step indicator styles */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    margin: 0 0.5rem;
}

.step.active {
    background-color: var(--color-primary);
    color: white;
}

.step.completed {
    background-color: var(--color-accent);
    color: white;
}

/* Form transitions */
.form-step {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.form-step.active {
    opacity: 1;
    transform: translateX(0);
}

/* Loading spinner */
.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--color-primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
