/* ===========================================
   Containly - Signup Page Styles
   Wizard progress + step styling
   =========================================== */

/* Progress indikator */
.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.signup-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.signup-progress-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.06);
    color: #86868b;
    transition: all 0.3s ease;
}

.signup-progress-step.active .signup-progress-dot {
    background: #42B0D5;
    color: #fff;
}

.signup-progress-step.completed .signup-progress-dot {
    background: #34C759;
    color: #fff;
}

.signup-progress-label {
    font-size: 0.625rem;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.signup-progress-step.active .signup-progress-label {
    color: #42B0D5;
}

.signup-progress-step.completed .signup-progress-label {
    color: #34C759;
}

.signup-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 0.5rem;
    margin-bottom: 1rem;
    max-width: 40px;
    transition: background 0.3s ease;
}

.signup-progress-line.completed {
    background: #34C759;
}

/* Steps bruger login-klasserne fra login.css — her er kun signup-specifikke overrides */

.signup-step .input-group:last-of-type {
    margin-bottom: 1.5rem;
}

/* Initialer-felt: uppercase */
#admin-initials {
    text-transform: uppercase;
}
