/*signup-modal.css*/

.signup-progress-indicator {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.signup-progress-indicator li {
    flex: 1 1 0;
    text-align: center;
    font-weight: 600;
    color: rgba(33, 37, 41, 0.4);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(33, 37, 41, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.signup-progress-indicator li.active {
    color: #0d6efd;
    border-color: #0d6efd;
}

.signup-progress-indicator li.completed {
    color: rgba(33, 37, 41, 0.8);
    border-color: rgba(13, 110, 253, 0.35);
}

.signup-step h2 {
    font-weight: 700;
}

.signup-success-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 2rem;
}

.signup-success-icon .bi {
    line-height: 1;
}